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

https://github.com/zkan/testing-django

Testing Django
https://github.com/zkan/testing-django

django

Last synced: about 2 months ago
JSON representation

Testing Django

Awesome Lists containing this project

README

          

# Testing Django

## Setting Up

```sh
python3 -m venv ENV
source ENV/bin/activate
pip install -r requirements.txt
```

## Running Django Server

```sh
cd testing_django
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
```