- Django
- Python
- Fork this repository, and cd into it.
git clone https://github.com/<username>/api.git
cd api/
- Create and activate your virtual environment.
- MacOS/Linux:
virtualenv --no-site-packages env source env/bin/activate
- Windows:
virtualenv env .\env\Scripts\activate
- Install requisite python packages and modules.
pip install -r requirements.txt
- Create and activate your virtual environment.
- run
pipenv shell
pipenv install
- Verify if the Django project is working by running the development server.
python manage.py migrate
python manage.py runserver