An open API service indexing awesome lists of open source software.

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

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=
```