Skip to content

thiiagoms/django-app

Repository files navigation

Simple crud with django 🐍

1 - First, let's create our virtual env:

  python -m venv venv

2 - To active our venv: -- On Windows:

.\venv\Scripts\activate

-- On Linux:

source venv/bin/activate

3 - Install requirements:

  pip install -r requirements.txt

4 - Make migrations on django app directory:

python manage.py migrate

5 - Run the server:

 python manage.py runserver