https://github.com/sudosubin/pirogramming-14th-django
피로그래밍 14기 강의 (Django crud)
https://github.com/sudosubin/pirogramming-14th-django
backend django pirogramming python
Last synced: 3 months ago
JSON representation
피로그래밍 14기 강의 (Django crud)
- Host: GitHub
- URL: https://github.com/sudosubin/pirogramming-14th-django
- Owner: sudosubin
- Created: 2021-01-03T15:05:15.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-08T17:10:08.000Z (over 5 years ago)
- Last Synced: 2025-10-24T23:28:54.200Z (8 months ago)
- Topics: backend, django, pirogramming, python
- Language: Python
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pirogramming-14th-django
피로그래밍 14기 Django Playground
## Table of Contents
- [Requirements](#requirements)
- [Installation](#installation)
- [Run](#run)
## Requirements
- Python 3.7+
- [Pipenv](https://github.com/pypa/pipenv)
## Installation
```sh
# macos, linux
export PIPENV_VENV_IN_PROJECT="enabled"
# windows
SET PIPENV_VENV_IN_PROJECT="enabled"
# installation
pipenv install --dev --three
```
## Run
```sh
# need migrate
pipenv run server/manage.py migrate
# run
pipenv run server/manage.py runserver 0.0.0.0:8000
```