Skip to content

rafael-ab/django-todoapp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

djando-todoapp

Table of contents

General Info

Just another todo app using Django. See on Heroku

Technologies

  • Python 3.8.2
  • Django 3.0.7

Development Setup

Clone the repo

$ git clone https://github.com/rafius97/django-todoapp.git

$ cd django-todoapp

Configure virtual enviroment with pyenv See installation

$ pyenv virtualenv 3.8.2 django-todoapp

$ pyenv activate django-todoapp

Install requirements

$ pip install -r requirements.txt

Configure the enviroment variable for development

$ export DJANGO_DEBUG=True

Run migrate commands

$ python manage.py makemigrations

$ python manage.py migrate

Run the app server

$ python manage.py runserver