INACTIVE - http://mzl.la/ghe-archive - To infinity and beyond. The backend API.
Перейти к файлу
Christopher Van de05a66e5f fix `db.query` test (blocks PRs #321 and #334) 2015-01-13 15:13:01 -08:00
api use a persistent database connection (fixes #322) 2015-01-08 02:40:11 -08:00
images add galaxy-api logo to README 2014-09-02 11:41:28 -07:00
lib make `isConnected` helper function in `lib.db` to be more DRY 2015-01-13 00:21:12 -08:00
migrations implement `DELETE /games/{idOrSlug}` in hapi; exclude soft-deleted games (fixes #262; fixes #293) 2014-12-19 17:28:55 -08:00
test fix `db.query` test (blocks PRs #321 and #334) 2015-01-13 15:13:01 -08:00
.gitignore let environment variables override defaults for npm server scripts; fix npm scripts 2015-01-08 01:43:31 -08:00
.jshintrc add a `.jshintrc` 2015-01-05 16:02:01 -08:00
.travis.yml add gulp tasks for DB operations (issue #311); swap DB when running tests (issue #312) 2015-01-02 20:34:19 -08:00
CONTRIBUTING.md add CONTRIBUTING.md 2014-08-28 16:36:19 -07:00
LICENCE add LICENCE 2014-08-28 16:36:19 -07:00
README.md add `refreshdb-dev` npm script to create db + run migrations for new dev setups 2015-01-12 17:58:54 -08:00
apiary.apib api docs: fix /game -> /games (fixes #238) 2014-09-08 08:37:52 +02:00
gulpfile.js improve pattern for jshint-able files 2015-01-05 15:56:20 -08:00
index.js use a persistent database connection (fixes #322) 2015-01-08 02:40:11 -08:00
package.json add `refreshdb-dev` npm script to create db + run migrations for new dev setups 2015-01-12 17:58:54 -08:00
settings.js add gulp tasks for DB operations (issue #311); swap DB when running tests (issue #312) 2015-01-02 20:34:19 -08:00
settings_dev.js.dist update POSTGRES_URL in dist dev/prod settings files 2015-01-07 17:07:01 -08:00
settings_prod.js.dist update POSTGRES_URL in dist dev/prod settings files 2015-01-07 17:07:01 -08:00
settings_test.js.dist add gulp tasks for DB operations (issue #311); swap DB when running tests (issue #312) 2015-01-02 20:34:19 -08:00

README.md

galaxy-api

Build Status

Here lies the API for Galaxy.

There is a REST HTTP API and WebSocket API. The REST API can be consumed by game developers. The WebSocket API is intended to be consumed by galaxy.js, a simple drop-in JavaScript API for multiplayer, web-based games.

Note: This project is not ready for prime time. Not an official Mozilla project. Pre-alpha everything. Anything and everything at your own risk.

Installation

To install dependencies:

npm install

Other dependencies:

  • PostgreSQL (brew install postgresql && brew info postgresql using Homebrew on Mac OS X)

Create a PostgreSQL database (using settings.POSTGRES_URL from settings_dev.js):

npm run refreshdb-dev

Development

Initialise settings, if you haven't already:

cp ./settings_dev.js.dist ./settings_dev.js
cp ./settings_test.js.dist ./settings_test.js

To run the local web server:

npm run dev

To run with a different settings file:

GALAXY_API_SETTINGS=./some_different_settings_dev.js npm run prod

To run linting tools:

gulp lint

Production

Initialise settings if you haven't already:

cp ./settings_prod.js.dist ./settings_prod.js

To run the web server in production:

npm run prod

To run with a different settings file:

GALAXY_API_SETTINGS=./some_different_settings_prod.js npm run prod

Alternatively, without npm:

NODE_ENV=production GALAXY_API_SETTINGS=./settings_prod.js node index.js
NODE_ENV=production GALAXY_API_SETTINGS=./some_different_settings_prod.js node index.js

Testing

Initialise settings:

cp ./settings_test.js.dist ./settings_test.js

To run tests:

npm test

To run a single test:

npm test -- test/lib/db.js

To run tests without destroying the database first:

npm run test-keepdb

To run tests with coverage and linting:

npm run test-verbose

Database

gulp tasks

These are the available gulp tasks for PostgreSQL database and migration operations:

  • gulp createdb - create a PostgreSQL database using settings.POSTGRES_URL.
  • gulp dropdb - delete the database.
  • gulp migratedb - run migrations.
  • gulp migratedb-create --name <name> - create a new migration file called <name>.
  • gulp migratedb-up - run all up migrations from the current state.
  • gulp migratedb-up --num <num> - run <num> up migrations from the current state.
  • gulp migratedb-down - run a single down migration.
  • gulp migratedb-down --num <num> - run <num> down migrations from the current state.

psql commands

To access the PostgreSQL prompt:

psql -d galaxy-api

These are a few helpful PostgreSQL commands:

  • \h - view list of available commands.
  • \dt+ - list all tables in the database.
  • \d+ <table_name> - show a table's schema.
  • drop table <table_name> - delete a table.
  • \x on - view a table in "extended display" mode.