Skip to content
This repository has been archived by the owner on Mar 18, 2019. It is now read-only.

rohit-gohri/InnoWebsite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

InnoWebsite

Innovision'16 Website

Built on Django 1.9.1

Dependencies:

1. requests-oauthlib:

Github

Install:

pip install requests requests_oauthlib

2. python-social-auth:

Github Docs

Install:

pip install python-social-auth

3. mysqlclient:

Github

Python and MySQL dev headers and libraries for mysqlclient:

sudo apt-get install python-dev libmysqlclient-dev

Install:

pip install mysqlclient

4. django-material:

Github Docs

Install:

pip install django-material

Database: MySQL

Setup a databse with name innovision

CREATE DATABASE innovision CHARACTER SET UTF8;

And a user inno with password innovision

CREATE USER inno@localhost IDENTIFIED BY 'innovision';
GRANT ALL PRIVILEGES ON innovision.* TO inno@localhost;
FLUSH PRIVILEGES;