Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hfaran/citysportsleague-server
[IEEE Vancouver Windows 10 Hackathon] City Sports League
https://github.com/hfaran/citysportsleague-server
Last synced: 3 months ago
JSON representation
[IEEE Vancouver Windows 10 Hackathon] City Sports League
- Host: GitHub
- URL: https://github.com/hfaran/citysportsleague-server
- Owner: hfaran
- License: mit
- Created: 2015-05-16T20:45:02.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-17T22:24:59.000Z (over 9 years ago)
- Last Synced: 2024-10-04T21:38:28.731Z (3 months ago)
- Language: Python
- Homepage:
- Size: 299 KB
- Stars: 6
- Watchers: 7
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WeLikeSports
Create an account. Join a team, or make one and invite friends. Matchmake to get matched for games with teams of a similar skill level. Enter your score to keep it fresh.
* This is the server backend (a JSON API powered by Tornado-JSON and Pony ORM) for City Sports League written in ~20 hours
* Client can be found at https://github.com/g4-SL/Windows10-GameMatchmaking
* [IEEE Vancouver Windows 10 Hackathon](http://sites.ieee.org/vancouver-cs/archives/357)## Setup
```bash
sudo pip install virtualenvwrapper
mkvirtualenv welikesports
pip install -r requirements.txt
```## Usage
```bash
workon welikesports
cd src
./app.py --cookie-secret supersecuresecret --port 8585 --debug
```See the [docs](docs/) directory for API documentation.