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

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)

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
```