A demo bucket list on Dreams
This is an open source project and all contributions are welcome.
In order to set up this repository in your local machine simply use the fork option available at the top right corner of this page.
You will need to have python and pip installed locally to run this project.
Once you have cloned this repository to your local machine, run the following commands from the root of your cloned repository.
Install virtual environment:
#!/bin/bash
pip install virtualenvCreate a virtual environment (Mac OS):
#!/bin/bash
virtualenv ../dreams-venv --python=python3Activate the virtual environment (Mac OS):
#!/bin/bash
source ../dreams-venv/bin/activateTo make sure you have all the required packages please run:
#!/bin/bash
pip install -r requirements.txtFor Windows:
set FLASK_APP= app.pyFor MacOS:
export FLASK_APP= app.pyNext commands are common for all three platforms(i.e. Windows, MacOS and Linux):
flask db init
flask db migrate -m "Any message of your choice"
flask db upgradeTo run the app just execute one of following commands: Either:
python3 app.pyor:
flask runThis should initiate a flask web app running on port 8080 on your local host.
This is an open source project welcoming all contributions (See CONTRIBUTING.md).
Feel free to make a PR for any enhancements or check out the issues page for suggested fixes.
For those who wish to have their name included in the contributors list please also add your name to the list as part of your PR in the same format as the other contributors.
See Contributors.md.