The is a Django rest framework template.
.
├── core
│ ├── admin.py
│ ├── apps.py
│ ├── classes.py
│ ├── exceptions.py
│ ├── __init__.py
│ ├── literals.py
│ ├── management
│ │ └── commands
│ │ └── makesuper.py
│ ├── migrations
│ │ └── __init__.py
│ ├── mixins.py
│ ├── models.py
│ ├── modelutils.py
│ ├── pagination.py
│ ├── permissions.py
│ ├── serializers.py
│ ├── tests.py
│ ├── utils.py
│ └── views.py
├── Django_rest_framework_template
│ ├── asgi.py
│ ├── __init__.py
│ ├── settings.py
│ ├── urls.py
│ ├── views.py
│ └── wsgi.py
├── example.env
├── manage.py
├── README.md
├── requirements.txt
├── scripts
│ ├── deploy.sh
│ ├── fresh_init.sh
│ └── locustfile.py
├── templates
│ └── email
│ ├── account_verification.html
│ └── password_reset.html
└── user
├── admin.py
├── apps.py
├── __init__.py
├── migrations
│ ├── 0001_initial.py
│ └── __init__.py
├── models.py
├── serializers.py
├── tests.py
├── urls.py
├── utils.py
└── views.py
10 directories, 43 files
See the requirements for this project on requirements.txt file.
- Go to the repository and create a virtual environment.
python3 -m venv venv
- Activate the virtual environment and install dependencies.
source venv/bin/activate
pip install -r requirements.txt
- Then install wheel, build-essential, python3-dev and psycopg2
pip install wheel
sudo apt install build-essential
sudo apt install python3-dev
pip install psycopg2
- Copy the
example.env
file to.env
and fill in the values.
cp example.env .env
- The
.env
file should look like this:
SECRET_KEY=<key>
VERSION=v1
DEBUG=True
EMAIL_HOST_USER=acd@gmail.com
EMAIL_HOST_PASSWORD=abcd
BACKEND_URL=<backend url>
FERNET_KEY=<key>
FRONTEND_URL=<frontend url>
BRANCH=dev
- Create and migrate the database.
python manage.py migrate
- You can run the server with the following command:
python manage.py runserver
- You can also run the server on a custom port by adding the port number after the
runserver
command:
python manage.py runserver 8000