0
|
1 # Serpentron
|
|
2
|
|
3 Implementation of a classic arcade game. Survive as long as possible
|
|
4 without hitting anything. Up to 4 players can play on a single
|
|
5 computer. Players with the same color form a team. The scoring system
|
|
6 is balanced for all possible team configurations.
|
|
7
|
|
8 [Play here](http://www.games1729.com/serpentron/)
|
|
9
|
|
10 ## Getting Started
|
|
11
|
|
12 Install Amber and create an Amber project, as shown in
|
|
13 [Amber Instructions](https://github.com/amber-smalltalk/amber#prerequisites).
|
|
14
|
|
15 To bring project alive after cloning the repository:
|
|
16
|
|
17 ```sh
|
|
18 npm install
|
|
19 bower install
|
|
20 grunt default devel
|
|
21 ```
|
|
22
|
|
23 Developing the project (after brought alive): start server with
|
|
24 `amber serve` and go to `http://localhost:4000/`.
|