- This application was built against Python 3.6
- Postgres 9.4 and above, running locally on port 5432
This project uses python-dotenv to autoload environment variables from .env files
FLASK_APP='app'
FLASK_ENV='development'
DATABASE_URL="postgres://localhost:5432/instagram"
SECRET_KEY="secretkey"
APP_SETTINGS="config.DevelopmentConfig"
S3_BUCKET=""
S3_KEY=""
S3_SECRET=""
BRAINTREE_MERCHANT_ID=
BRAINTREE_PUBLIC_KEY=
BRAINTREE_PRIVATE_KEY=
SENDGRID_API_KEY=
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
pip install -r requirements.txt
flask db upgradeflask runflask shellThis repository comes with .env file for use with python-dotenv. Remember to avoid commiting .env files or any files that may contain environment variables or sensitive data such as api keys in repositories.
The .env is added here only for educational purposes.