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
- Host: GitHub
- URL: https://github.com/zkan/testing-django
- Owner: zkan
- License: mit
- Created: 2020-05-23T02:07:35.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2021-09-22T19:03:59.000Z (almost 5 years ago)
- Last Synced: 2025-04-05T21:30:27.250Z (about 1 year ago)
- Topics: django
- Language: Python
- Size: 38.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```