Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 635 Bytes

README.md

File metadata and controls

38 lines (33 loc) · 635 Bytes

Movie it

Setup


Requirements

  • Python 3.6+
  • Virtualenvwrapper

Set Up

Clone esse projeto e crie um virtual environment:

$ git clone https://github.com/devfest-ufrn/movie-it.git
$ mkvirtualenv movieitvenv
$ workon movieitvenv

Install all dependencies

$ pip install -r requirements.txt

Setup database:

cd movieit
python manage.py makemigrations
python manage.py migrate

Testing:

python manage.py test

Running the app:

$ python manage.py runserver

Agora você pode ir até http://localhost:8000.