Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smittenn/photo-app
Personal Usability Experiment with Photo Galleries
https://github.com/smittenn/photo-app
Last synced: 10 days ago
JSON representation
Personal Usability Experiment with Photo Galleries
- Host: GitHub
- URL: https://github.com/smittenn/photo-app
- Owner: smittenn
- Created: 2014-10-17T07:41:18.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-24T23:46:05.000Z (almost 10 years ago)
- Last Synced: 2024-04-18T14:18:46.665Z (7 months ago)
- Language: JavaScript
- Homepage: http://erchsm.me
- Size: 323 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## Building Apps With The Yeoman Workflow
This is a simple demonstration of the end result when using [Yeoman](http://yeoman.io), [Grunt](http://gruntjs.com), and [Bower](http://bower.io) to create an application.
[Building Apps With The Yeoman Workflow](http://stephenplusplus.github.io/me-but-you/#6-10-2013-building-apps-with-the-yeoman-workflow) walks through the steps we took to create the To Do application featured in this repository.
To check it out, clone the repository, then:
```
# Use `package.json` to pull down the app's dependencies from NPM
$ npm install# Use `bower.json` to pull down the app's dependencies from Bower
$ bower install# The (unwritten) tests have Bower dependencies as well. Grab those:
$ cd test
$ bower install
```Now that you have all of the pieces, try out:
`grunt server` to create a development server, and
`grunt` to test and build the application.