Skip to content

awesome-archive/sichu_web

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sichu Web Application

Image of travis-ci Coverage Status

Introduction

This is an application that you can manage your own books, and it enables you to share your books with your friends. You can visit it on: http://sichu.sinaapp.com

Run local

Generally speaking, this is a django application, to run local, you should have some basic knowledge about django.

You have to install git, python2.7, virtualenv, pip, mysql in your local OS.

Then follow commands below. (Assume that your local MySQL Server's user is root without password).

$ mysql -u root -e "create database sichu default character set utf8;"
$ cd ~/workspace
$ git clone git@github.com:ax003d/sichu_web.git
$ virtualenv ~/workspace/env-sichu
$ source ~/workspace/env-sichu/bin/activate
$ cd sichu_web
$ pip install -r requirements.txt
$ cd sichu
$ python manage.py syncdb
$ python manage.py migrate
$ python manage.py runserver

Open your browser and visit http://127.0.0.1:8000.

Packages

No packages published

Languages

  • JavaScript 40.9%
  • Python 26.6%
  • CSS 20.0%
  • HTML 12.5%