Skip to content

dapt4/django-postgresql-CRUD-supermarket-list-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-postgresql-CRUD-supermarket-list-app

image

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 in:

localhost:8000/

About

a django application made created with posgresql and bootswatch

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published