Update README.md

This commit is contained in:
Adil Mohak 2024-07-28 23:14:14 +03:00
parent 913a582e72
commit 913774fb15

View File

@ -66,25 +66,9 @@ git clone https://github.com/adilmohak/django-lms.git
pip install -r requirements.txt pip install -r requirements.txt
``` ```
- Create `.env` file inside the root directory and include the following variables - Create `.env` file inside the root directory
```bash - Copy and paste everything in the `.env.example` file into the `.env` file. Don't forget to customize the variable values
# Database config
DB_NAME=[YOUR_DB_NAME]
DB_USER=[DB_ADMIN_NAME]
DB_PASSWORD=[DB_ADMIN_PASSWORD]
DB_HOST=localhost
DB_PORT=[YOUR_POSTGRES_PORT default is 5432]
# Email config
EMAIL_FROM_ADDRESS=Django LMS <youremail@example.com>
EMAIL_HOST_USER=[YOUR_EMAIL]
EMAIL_HOST_PASSWORD=[YOUR_EMAIL_PASSWORD]
# Other
DEBUG=True
SECRET_KEY=[YOUR_SECRET_KEY]
```
```bash ```bash
python manage.py migrate python manage.py migrate