Skip to content

Latest commit

Β 

History

History
41 lines (33 loc) Β· 952 Bytes

File metadata and controls

41 lines (33 loc) Β· 952 Bytes

image

[Coding style report]

Backend

Backend API

Project Setup with virtualenv

Clone the project using git

git clone https://github.com/rk4bir/drf-vue-boilerplate.git

Goto the project dir

cd backend

Create virtual environment and activate it

virtualenv -p /usr/bin/python3 venv
source venv/bin/activate

Update pip and install dependencies

pip install -U pip
pip install -r requirements.txt

Run the development server

python manage.py runserver

Project Setup with docker

docker-compose up --build