Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kjirou/easyscorekeeper
A simple scorekeeper application for web game development
https://github.com/kjirou/easyscorekeeper
Last synced: 12 days ago
JSON representation
A simple scorekeeper application for web game development
- Host: GitHub
- URL: https://github.com/kjirou/easyscorekeeper
- Owner: kjirou
- Created: 2013-02-11T04:59:08.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-02-21T05:03:04.000Z (over 11 years ago)
- Last Synced: 2023-03-30T12:32:17.983Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 215 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
EasyScorekeeper
===============A simple scorekeeper application for web game development.
Webゲーム開発のためのシンプルなスコアキーパーアプリケーションです。
## Getting started / はじめに
```
$ cd /path/to/wwwProduction:
$ wget https://github.com/kjirou/easyscorekeeper/archive/master.zip
$ unzip master
$ mv easyscorekeeper-master easyscorekeeperDevelopment:
$ git clone [email protected]:kjirou/easyscorekeeper.git$ cd easyscorekeeper
$ chmod a+w data
$ cp includes/env.example.php includes/env.php
```## Dependencies / 依存関係
- PHP >= 5.3
- PHP SQLite3 module
- Apache >= 2.2, and you can set "AllowOverride All"## Score registration API / 得点登録API
```
http://yoursite/easyscorekeeper/api.php?score=123
http://yoursite/easyscorekeeper/api.php?m=new&c=jsonp_callback&u=scorer_name&score=123
http://yoursite/easyscorekeeper/api.php?score=123&comment=Hello
http://yoursite/easyscorekeeper/api.php?score=123&category=stage1&comment=Hello
```## Score ranking API / 得点ランキング取得API
```
http://yoursite/easyscorekeeper/api.php?m=list
http://yoursite/easyscorekeeper/api.php?m=list&category=stage1
```## License
MIT License