Skip to content

a movies application made with django, rest_framework, postgres, pillow

Notifications You must be signed in to change notification settings

dapt4/django-drf-postgres-pillow-moviesapp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-drf-postgres-pillow-moviesapp

first create your virtualenv

$ python3 -m venv venv

activate venv

$ source venv/bin/activate

then install requeriments

$ pip install -r requirements.txt

install postgresql, login and create the database

CREATE DATABASE <yourDBname>;

create a .env file in the root folder

$ touch .env

and add your postgresql credentials and the app SECRET_KEY to .env file

ENV_SECRET_KEY="{add a secret key like bhajfbkjhawbdkjhabdjh}"
ENV_NAME='{yourDBname}'
ENV_HOST='{your host or localhost}'
ENV_PORT='{your db port or 5432}'
ENV_USER='{your db user}'
ENV_PASSWORD='{your db password}' run the command:

python manage.py migrate

finally the project run with:

$ python manage.py runserver

open your browser or your REST Client in:

GET POST localhost:8000/movie
GET PUT DELETE localhost:8000/movie/<id>

About

a movies application made with django, rest_framework, postgres, pillow

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages