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

https://github.com/ahnlabcloudmatelabs/python_web_example

Devops 실습을 위한 파이썬 예제
https://github.com/ahnlabcloudmatelabs/python_web_example

Last synced: about 1 year ago
JSON representation

Devops 실습을 위한 파이썬 예제

Awesome Lists containing this project

README

          

## install django
```bash
pip install django
```

## create project
```bash
django-admin startproject {project_name}
```

## create app
```bash
python manage.py startapp {appname}
```

## create superuser
```bash
python manage.py createsuperuser
```

## License

See [LICENSE](LICENSE).

TEST