File: README.md

package info (click to toggle)
djangorestframework-api-key 3.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 392 kB
  • sloc: python: 926; makefile: 53; sh: 3
file content (24 lines) | stat: -rw-r--r-- 388 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# project

Test project for Django REST Framework API Key.

## Usage

- Run migrations (creates an SQLite database):

```bash
python test_project/manage.py migrate
```

- Create a superuser to access the admin site:

```bash
python test_project/manage.py createsuperuser
# Enter user information as instructed
```

- Start the server:

```bash
python test_project/manage.py runserver
```