This repository has been archived by the owner on Oct 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Installation
Michael Mior edited this page Jul 6, 2016
·
19 revisions
Please install the following softwares:
- virtualbox
- python
- vagrant
- unzip
- pip
- Use pip to install the required python packages:
sudo pip install -r requirements.txt
-
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
tocmudbac/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
- Start the web server
python manage.py runserver 0.0.0.0:8000