Create your own team a share your data accessible for all team members. https://tfm-flask-tft.herokuapp.com
- Clone repository
$ git clone https://github.com/jucavi/TFM.git
$ cd TFM
- Create virtual enviroument and activate it
$ python3 -m venv .venv
$ source .venv/bin/activate
- Install dependencies
$ pip3 install -r requirements.txt
- Setup your environments variables
$ nano .env
FLASK_APP=project
FLASK_ENV=development
SECRET_KEY=secret_key_here
[email protected]
MAIL_PASSWORD=your_password
[email protected]
Read this before set MAIL_PASSWORD
- Crete database
$ flask db upgrade
- You can populate users for testing purposes
$ flask populate
- Start server
$ flask run