LMS-DB
The schema code for the database and tables to be used by the LMS system
Required Files
./.env
The environment variables file with the following variables:
DB_NAME
DB_USER
DB_PASSWORD
How to run
- Create a virtual environment (Optional best practice)
python -m venv <path>
- Acitvate the virtual environment Mac:
source <path>/bin/activate
Windows:
<path>\Scripts\activate.bat
<path>\Scripts\Activate.ps1
- Use Pip to install all required packages (Only required on first run)
pip install -r requirements
- Run the application
python ./src/database_creation.py
Languages
Python
100%