Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nerddiffer/keyword-wrangler
A simple app to manage keywords
https://github.com/nerddiffer/keyword-wrangler
Last synced: 14 days ago
JSON representation
A simple app to manage keywords
- Host: GitHub
- URL: https://github.com/nerddiffer/keyword-wrangler
- Owner: NerdDiffer
- License: isc
- Created: 2015-09-05T19:45:43.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-08T16:00:26.000Z (about 9 years ago)
- Last Synced: 2024-10-18T18:05:44.299Z (27 days ago)
- Language: JavaScript
- Size: 156 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#Keyword Wrangler
Allow users to manage a structured set of data about food & cooking.
Map some keywords into categories, allow users to browse & edit the data.
* Create, read, update, delete keywords.
AngularJS in front-end, connecting to a NodeJS RESTful API on back-end.
Following Part 2 of Manuel Kiessling's, *The Node Craftsman Book*.
##Get started
#####install dependencies
* `npm install`
* `bower install`#####migrate db
Substitute environment of choice at the end of command.* `./node_modules/.bin/db-migrate up --env dev`
* `./node_modules/.bin/db-migrate down --env dev`#####start server
`npm start`
By default, the server is started in 'test' environment.#####run tests
`npm test`#####set environment variables
`KW_ENV='dev'`
other accepted values are:
* 'test' (default)
* 'production'