项目作者: eltonvs

项目描述 :
A Tournament management framework
高级语言: Python
项目地址: git://github.com/eltonvs/expanse.git
创建时间: 2017-03-15T17:59:53Z
项目社区:https://github.com/eltonvs/expanse

开源协议:

下载


expanse

Build Status

Getting Started

To install this project on localhost, you’ll need to follow these steps:

1 - Change directory into your newly created project.

  1. $ cd expanse

2 - Create a Python virtual environment.

  1. $ virtualenv expanse # Python2.7

3 - Activate your env

  1. $ source $PATH_TO_YOUR_ENV$/bin/activate

4 - Install requirements:

  1. (env)$ pip install -r requirements.txt

5 - Upgrade packaging tools.

  1. (env)$ pip install --upgrade pip setuptools

6 - Install the project in editable mode with its testing requirements.

  1. (env)$ pip install -e ".[testing]"

7 - Run your project.

  1. (env)$ pserve development.ini --reload

or, if you’re lazy, just run this script (on project folder, of course):

  1. $ ./install_project.sh