https://github.com/jorgeramirez/guestlist
Demo app built using Yeoman and AngularJS
https://github.com/jorgeramirez/guestlist
Last synced: about 1 month ago
JSON representation
Demo app built using Yeoman and AngularJS
- Host: GitHub
- URL: https://github.com/jorgeramirez/guestlist
- Owner: jorgeramirez
- Created: 2012-09-22T21:36:08.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-09-23T17:28:15.000Z (over 12 years ago)
- Last Synced: 2025-01-26T14:48:47.081Z (3 months ago)
- Language: JavaScript
- Size: 375 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# guestlist
A very simple demo app to control the guest list.
Built using [Yeoman](http://yeoman.io) and [AngularJS](http://angularjs.org/).## Launch the application
Before launching the application you must create a file name `guest.json` inside
`app/guests/` folder. This is where the application data resides. Put something
like the following in it:
```javascript
[
{"tableNumber": "1", "description": "foo", "present": false, "qty": "4"},
{"tableNumber": "2", "description": "bar", "present": false, "qty": "6"}
]
```The first time the application is launched, `guests.json`, is read and saved into
`localStorage`. Currently if your `guests.json` changes, you must do `localStorage.clear();`
before reloading the app (I will change this in the future =D).Finally to launch the app, issue the following
$ cd guestlist/
$ yeoman server