Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 731 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 731 Bytes

UI Project

Python Django UI + User Authentication System

INSTALLATION

Django Installation & Tutorial

Database Setup (MySQL)

CREATE DATABASE gui DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci; CREATE USER 'gui'@'%' IDENTIFIED BY 'gui'; GRANT ALL PRIVILEGES ON gui . * TO 'gui'@'%';

Server Setup

  • python manage.py syncdb
  • python manage.py runserver

Default Server URL