Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/olange/pawa
Boats riding the winds of lake Leman – web animation with Phaser, Polymer and Neo4j
https://github.com/olange/pawa
Last synced: 12 days ago
JSON representation
Boats riding the winds of lake Leman – web animation with Phaser, Polymer and Neo4j
- Host: GitHub
- URL: https://github.com/olange/pawa
- Owner: olange
- License: bsd-3-clause
- Created: 2018-01-29T18:05:46.000Z (almost 7 years ago)
- Default Branch: develop
- Last Pushed: 2022-01-29T06:14:14.000Z (almost 3 years ago)
- Last Synced: 2024-10-18T23:13:08.885Z (about 1 month ago)
- Language: HTML
- Homepage:
- Size: 5.87 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: docs/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# PAWA
Web animation of boats riding the winds of lake Leman, using the [Phaser.io](https://phaser.io) library, [Polymer Elements](https://elements.polymer-project.org) and the [Neo4j graph database](https://neo4j.com).
## Setup
See the [contributing guide](docs/CONTRIBUTING.md) to setup your development environment. In a nutshell, here's how to download the sources and fetch the client app dependencies:
```bash
git clone [email protected]:olange/pawa.git
cd pawa/
npm install
```## Run
The app requires two back-end services to run: the Neo4j graph database server, and the Polymer application server.
Open a first terminal window and start the Neo4j database server; you can then access the Neo4j console on [`http://localhost:7474/`](http://localhost:7474/), to explore the database contents:
```bash
npm run start-db
```
Then open a second terminal window and start the Polymer application server; you can then access the front-end app at [`http://localhost:8081`](http://localhost:8081):```bash
npm run start-app
```