To install the required dependencies, please follow these steps:
- Open a console.
- Go to the project directory (with
cd
command). - Write and execute
pip3 install -r requirements.txt
.
To run the app, you need to provide a Microsoft account for the app to send/receive emails. To add this account follow these steps:
- Open the file
schema.sql
. - Locate the line
INSERT INTO credentials (name,user,password) VALUES ('EMAIL_APP','developmentcapstone', '$TR41NC0URS3R4$')
. - Replace
developmentcapstone
with the email address. - Replace
$TR41NC0URS3R4$
with a password to access the email account. - Run
flask init-db
on the project directory.
For run the app you need to use flask run
on the project directory.