Skip to content
This repository has been archived by the owner on Oct 7, 2021. It is now read-only.

Installation

Michael Mior edited this page Jul 6, 2016 · 19 revisions

Install Requirements

Software

Please install the following softwares:

  • virtualbox
  • python
  • vagrant
  • unzip
  • pip
Python Packages
  • Use pip to install the required python packages:
sudo pip install -r requirements.txt     

Setup Database

  • Create an database with utf8 character set. (especially these columns need utf8: character set. repository.description, repository.homepage, attempt.log)

  • Rename cmudbac/settings_example.py to cmudbac/settings.py, and set DATABASE configurations of this file according to your database.

  • Migrate database and load initial data:

python manage.py migrate
python manage.py loaddata library/fixtures/*.json

Website

  • Start the web server
python manage.py runserver 0.0.0.0:8000                                         
Clone this wiki locally