Skip to content

Installation Guide

Jungmo Ahn edited this page Mar 17, 2016 · 11 revisions

Only install API

$ pip install setupbox

Web Server Installation Guide

nginx나 httpd에 대한 설정은 하지 않았으므로 사용하고 싶으신 웹서버를 쓰시면 됩니다.

$ git clone https://github.com/maxtortime/SetupBox.git
$ ./install_server_rhel.sh <repository name> # (superuser 권한이 필요한 작업이 있습니다. (npm, pip, virtualenv 설치))
$ source venv/bin/activate
$ pip install -r requirements.txt
$ cd web_server
$ python db.py create_db
$ python db.py db init
$ python db.py db migrate
$ python db.py db upgrade
$ bower install
$ cd ..
$ nohup venv/bin/python web_server/runserver.py > /dev/null &

Clone this wiki locally