coopdevs/lazona_connector

View on GitHub
.envrc.example

Summary

Maintainability
Test Coverage
# Django secret key used on app settings
export SECRET_KEY="your_secret_here"

# Authentication for koiki API.
export KOIKI_HOST="https://rekistest.koiki.es/services"
export KOIKI_AUTH_TOKEN="your_auth_token here"

# Authentication for koiki tracking API.
export KOIKI_TRACKING_HOST="your_tracking_url"
export KOIKI_TRACKING_AUTH_TOKEN="your_auth_token here"

# Details to connect to WCFM, the Marketplace plugin's API on Woocommerce.
export WCFMMP_HOST="your_wp_woocomerce_url"
export WCFMMP_USER="your_wp_woocomerce_user"
export WCFMMP_PASSWORD="your_wp_woocomerce_password"

# If you use redis with docker as described on the README, that's your url
export REDIS_URL="redis://0.0.0.0:6379"

# Wordpress woocommerce webhook auth
export WC_WEBHOOK_SECRET="your_secret"
export WC_WEBHOOK_USER="woocommerce"

# Email configuration
export KOIKI_ERROR_MAIL_RECIPIENTS="email1@example.com,email2@example.com"
export EMAIL_HOST="your smtp host"
export EMAIL_PORT="your smtp port"
export EMAIL_HOST_USER="your smtp user"
export EMAIL_HOST_PASSWORD="your smtp user's password"
export EMAIL_USE_TLS="If the connection is secure in nature then the value for this option will be true."
export EMAIL_USE_SSL="If the connection is secure in nature then the value for this option will be true."
export DEFAULT_FROM_EMAIL="email@example.com"