This repository contains a python project using Django that visualizes stock prices and send email alerts as stock prices reach user input values.
Create a new virtual environment
python -m venv env
Activate virtual environment
Windows
.\env\Scripts\activate
Install dependencies
pip install -r requirements.txt
In order to be able to send email alerts, you need to create some credentials. Duplicate "secrets-mock.json" file and rename it to "secrets.json" and insert correct credencials.
To correct use built-in Django SQLite run the following command with python virtual enviroment activated.
python manage.py migrate
Finally, the application can be started running
python manage.py runserver --noreload