git ssb

1+

dinoworm ๐Ÿ› / catstack



Commit 4e75897c4222c98315e01b7c54934b93a605ebce

docs

Michael Williams committed on 1/8/2016, 4:34:00 AM
Parent: e31d778be91a7da083273e61402678c7acdc03ea

Files changed

README.mdchanged
README.mdView
@@ -9,10 +9,10 @@
99 - task runner: [npm scripts](http://substack.net/task_automation_with_npm_run)
1010 - client bundler: [browserify](https://github.com/substack/browserify-handbook)
1111 - es6/jsx transform: [babelify](https://www.npmjs.com/package/babelify)
1212 - css transform: [cssify](https://www.npmjs.com/package/cssify) and [css-modules-require-hook](https://www.npmjs.com/package/css-modules-require-hook)
13- - configuration: [evalify](https://www.npmjs.org/package/evalify)
1413 - bulk require: [bulkify](https://www.npmjs.org/package/bulkify)
14+- configuration: [simple-rc](https://www.npmjs.org/package/simple-rc)
1515 - utility functions: [ramda](http://ramdajs.com/docs/)
1616 - directory structure:
1717 - `/config/`
1818 - `/config/defaults.js`
@@ -95,4 +95,16 @@
9595 - to start db, run `npm run pg:start`
9696 - to stop db, run `npm run pg:stop`
9797 - to remove db, run `npm run pg:rm`
9898 - to show db logs, run `npm run pg:logs`
99+
100+run latest migrations with
101+
102+```shell
103+npm run knex -- migrate:latest
104+```
105+
106+or run [any other `knex` command] with `npm run knex -- [command] [args]`
107+
108+## known issues
109+
110+- adding a new file won't always be noticed by `node-dev` or `watchify` due to usage of `bulk-require`). potential fix is to use `chokidar-cli` and some transform to watch for new files and re-run the script command

Built with git-ssb-web