aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 9 insertions, 2 deletions
diff --git a/README.md b/README.md
index 10483abe5..cd3eb7a24 100644
--- a/README.md
+++ b/README.md
@@ -189,13 +189,20 @@ $ npm run rebuild
189 189
190### Start development app 190### Start development app
191 191
192We use [misty](https://github.com/adlk/misty) (see [misty.yml](https://github.com/getferdi/ferdi/blob/develop/misty.yml)) and [debug](https://github.com/visionmedia/debug): 192Run these two commands **simultaneously** in different terminals:
193
194```bash
195$ npm run dev
196$ DEBUG=Ferdi:* npm run start
197```
198
199Optionally, you can run both commands in one terminal with [misty](https://github.com/adlk/misty) (see [misty.yml](https://github.com/getferdi/ferdi/blob/develop/misty.yml)):
193 200
194```bash 201```bash
195$ DEBUG=Ferdi:* npx misty 202$ DEBUG=Ferdi:* npx misty
196``` 203```
197 204
198Be aware that the development database will be reset regularly. 205Note: please prefer [`debug()`](https://github.com/visionmedia/debug) over `console.log()`.
199 206
200### Packaging 207### Packaging
201 208