https://github.com/ulugbek101/django-starter-pack
Django project with some initial configurations
https://github.com/ulugbek101/django-starter-pack
django environs python sqlparse tzdata venv
Last synced: 3 months ago
JSON representation
Django project with some initial configurations
- Host: GitHub
- URL: https://github.com/ulugbek101/django-starter-pack
- Owner: ulugbek101
- Created: 2023-09-29T16:24:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-29T16:37:08.000Z (over 1 year ago)
- Last Synced: 2024-12-31T00:18:40.479Z (5 months ago)
- Topics: django, environs, python, sqlparse, tzdata, venv
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# django-starter-pack
Django project with some initial configurations### 1. Create virtaul environment
```
python -m venv venv
```
### 2. Activate virtual environment
```
# MacOS
source venv/bin/activate# Windows
venv\Scripts\Activate
```
### 3. Install dependencies from requirements.txt to virtual environment
```
pip install -r requirements
```
### 4. Create .env file and create following variables
```
SECRET_KEY=
DEBUG=
```