Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/CodeArtemis/TriggerRally
Trigger Rally Online Edition - fast arcade rally racing
https://github.com/CodeArtemis/TriggerRally
Last synced: 3 months ago
JSON representation
Trigger Rally Online Edition - fast arcade rally racing
- Host: GitHub
- URL: https://github.com/CodeArtemis/TriggerRally
- Owner: CodeArtemis
- License: other
- Created: 2012-04-14T08:44:53.000Z (almost 13 years ago)
- Default Branch: gh-pages
- Last Pushed: 2022-12-08T14:45:36.000Z (about 2 years ago)
- Last Synced: 2024-08-02T06:17:36.186Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 23.4 MB
- Stars: 319
- Watchers: 38
- Forks: 132
- Open Issues: 43
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-open-source-games - Trigger Rally Online Edition - Fast arcade rally racing action, play in your browser with WebGL 3D graphics. (Browser-Based / Racing)
README
Trigger Rally Online Edition
============================http://triggerrally.com
Code structure
--------------Trigger uses JavaScript on both the client and server.
All code now lives under [server/](https://github.com/CodeArtemis/TriggerRally/tree/v3/server).
Client-only code is in [server/public/scripts/](https://github.com/CodeArtemis/TriggerRally/tree/v3/server/public/scripts)
Shared code is in [server/shared/](https://github.com/CodeArtemis/TriggerRally/tree/v3/server/shared)On the server, we use the node.js module system ('require').
Run `server/build/build.sh` to build production-mode JS bundles.Copyright & License
-------------------Copyright (c) 2012-2013 [Code Artemis](https://github.com/CodeArtemis) unless otherwise attributed.
See [LICENSE.md](LICENSE.md).
To Run
-------------------Install MongoDB
```sh
cd server
npm i -g babel-cli
npm i
npm start
```