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 virtualenv
Create a virtual environment (Mac OS):
#!/bin/bash
virtualenv ../dreams-venv --python=python3
Activate the virtual environment (Mac OS):
#!/bin/bash
source ../dreams-venv/bin/activate
Install the dependencies required:
#!/bin/bash
pip install -r requirements.txt
Now you can run /src/app.py to initiate the app:
#!/bin/bash
python /src/app.py
This 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.