Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 962 Bytes

README.md

File metadata and controls

42 lines (34 loc) · 962 Bytes

LexTermServer

Development

Prerequisites

  • Python (2.7)
  • pip
    • easy_install pip
  • virtualenv
    • pip install virtualenv

Setup

mkdir lexTerm && cd lexTerm
virtualenv --no-site-packages server 
cd server
source bin/activate
git clone [email protected]:LexTerm/LexTermServer.git lexTerm
cd lexTerm
pip install -r requirements.txt
./manage.py syncdb

Run it

./manage.py runserver

Production

Setup

Deploy

  • to update, simply git pull in the repository