https://github.com/ahnlabcloudmatelabs/python_web_example
Devops 실습을 위한 파이썬 예제
https://github.com/ahnlabcloudmatelabs/python_web_example
Last synced: about 1 year ago
JSON representation
Devops 실습을 위한 파이썬 예제
- Host: GitHub
- URL: https://github.com/ahnlabcloudmatelabs/python_web_example
- Owner: ahnlabcloudmatelabs
- License: mit
- Created: 2020-04-20T05:30:57.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-09-22T18:54:47.000Z (over 4 years ago)
- Last Synced: 2025-02-07T13:30:19.613Z (over 1 year ago)
- Language: Python
- Size: 543 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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