Want to contribute? Great!
Star the repo and fork it and clone the forked one.
Open your favorite Terminal and run these commands.
Get started by installing the virtual environment
$ sudo pip install virtualenv
cd into the cloned repository and start the virtual environment
$ virtualenv venv
activate the virtual environment
$ source venv/bin/activate
install the basic requirements
$ sudo pip install -r requirements.txt
adding application
$ export FLASK_DEBUG=1 FLASK_APP=app.py
run the application
$ flask run
Verify the deployment by navigating to your server address in your preferred browser.
127.0.0.1:5000
Note: see more here about token and script
Have an eye on the terminal to know about the process.
Look at heroku installation to test and deploy the build