Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 518 Bytes

README.md

File metadata and controls

37 lines (28 loc) · 518 Bytes

airbnb

Clone of the Airbnb Backend built with Django, REST Framework and Strawberry GraphQL

How to use

1. Run Virtual Enviroment

poetry shell

2. Run Server

python manage.py runserver

3. Create Super User

python manage.py createsuperuse

How to create a new app

1. Create App

python manage.py startapp {App 이름}

2. Make Migration

python manage.py makemigrations

3. Apply Migration

python manage.py migrate