Django Setup

Django Setup

get started with Django

For database always use PostgreSQL instead of MySQL.

install PostgreSQL:
	sudo apt-get install postgresql-9.4
	sudo apt-get install postgresql postgresql-contrib


install GUI for config PostgreSQL
	sudo apt-get install pgadmin3


Login to root user postgres
	sudo su - postgres
	psql
	# change pass word of user Postgres
	ALTER USER Postgres WITH PASSWORD '<newpassword>';

DJANGO
Django database PostgreSQL

Dialogue & Discussion