Loading repository data…
Loading repository data…
Geffrerson7 / repository
Todo app designed with Flask
App made with Flask and Python to create tasks, mark tasks as done and edit tasks.
First clone the repository from Github and switch to the new directory:
$ clone git https://github.com/Geffrerson7/TODO-APP-FLASK.git
$ cd TODO-APP-FLASK
Activate the virtualenv for your project.
$ virtualenv venv
# windows
$ source venv/Scripts/activate
# Linux
$ source venv/bin/activate
Install project dependencies:
(venv)$ pip install -r requirements.txt
Create the following environment variables in the .env file
FLASK_APP
FLASK_DEBUG
FLASK_ENV
SECRET_KEY
DATABASE_URI
DB_NAME
You can now run the development server:
(venv)$ flask run
And navigate to
http://127.0.0.1:5000/
Clone the repository
$ git clone https://github.com/Geffrerson7/TODO-APP-FLASK.git
Go to the project directory.
$ cd TODO-APP-FLASK
Run the command
$ docker-compose up
And navigate to the route
http://127.0.0.1:5000/