College project for databases class at UNAL. Work in progress
Ensure you have the following prerequisites installed before starting:
pip install virtualenv
cd [path where you wish to create virtual env]
python -m venv [name of virtual env]
For MacOS:
source env/bin/activate
For Windows:
env/Scripts/activate.bat //In CMD
env/Scripts/Activate.ps1 //In Powershell
pip install -r requirementsWindows.txt
https://googlechromelabs.github.io/chrome-for-testing/
Configure environment variables in a .env file:
MYSQL_HOST="your_host"
MYSQL_USER="your_user"
MYSQL_PASSWORD="your_password"
MYSQL_DATABASE="your_database"
SECRET_KEY="your_secret_key"
CHROMEDRIVER_PATH = "\path\to\your\chromedriver\chromedriver.exe"
uvicorn main:app --reload
Feel free to adapt and expand this template based on the specific details and features of your project.