Moviemancer is a website for movie recommendation.
Production: http://moviemancer-api.herokuapp.com/
$ make setup
Inside the project directory run: $ make recreate_db
This will drop the moviemancer database and user in case you already have one and recreate those with the proper configuration.
If you wish just setup a moviemancer db that you already created, just run $ make setup_db
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'moviemancer',
'USER': 'moviemancer',
'PASSWORD': moviemancer,
'HOST': 'localhost',
'PORT': 5432,
}
}
Inside the project directory run:
$ make run
- open
http://127.0.0.1:8000
$ heroku create
$ git push heroku master
$ heroku run python manage.py migrate
$ heroku open