A simple todo list based off TodoMVC, AngularJS, and the Goodow Realtime Store API.
You can try out the app on its live instance.
The project can run on any static web server.
Fetch the source for the app:
git clone https://github.com/goodow/realtime-web-tasks.git
cd realtime-web-tasks
npm install
bower install
We have preconfigured the project with a simple development web server. The simplest way to start this server is:
gulp serve
This outputs an IP address you can use to locally test and another that can be used on devices connected to your network.
You can update the tool dependencies by running:
npm update
This will find the latest versions that match the version ranges specified in the package.json
file.
You can update the Realtime Store dependencies by running:
bower update
This will find the latest versions that match the version ranges specified in the bower.json
file.
Travis CI is a continuous integration service, which can monitor GitHub for new commits
to your repository and execute scripts such as building the app or running tests. The realtime-web-tasks
project contains a Travis configuration file, .travis.yml
, which will cause Travis to build and
deploy the app to Github Pages when you push to GitHub.
You will need to enable the integration between Travis and GitHub. See the Travis website for more instruction on how to do this.