This application requires that you have an AWS account, with an established S3 bucket and an access key/secret key pair.
To set up your own instance, you need to
- Check out this code
- Create a .env file as show below
- Install Python
- Install the requirements.txt (
pip install -r requirements.txt
) - Run
flask run
FLASK_APP=project
FLASK_DEBUG=0
BUCKET_NAME=[your bucket name]
AWS_ACCESS_KEY_ID=[your AWS access key]
AWS_SECRET_ACCESS_KEY=[your AWS secret access key]
APP_SECRET_KEY=[your application key]
DATABASE_URL=sqlite:///db.sqlite