aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Amine <amine@mouafik.fr>2020-03-10 09:20:13 +0100
committerLibravatar GitHub <noreply@github.com>2020-03-10 09:20:13 +0100
commit5c1818187e8296e7883514b8ef1c64aa194e2404 (patch)
tree8248c04d3d4ddb92b213062adbec167b7125f326
parentAdd custom dark mode handler support (#445) (diff)
parentRevert misty changes while keeping debug doc (diff)
downloadferdium-app-5c1818187e8296e7883514b8ef1c64aa194e2404.tar.gz
ferdium-app-5c1818187e8296e7883514b8ef1c64aa194e2404.tar.zst
ferdium-app-5c1818187e8296e7883514b8ef1c64aa194e2404.zip
Merge pull request #443 from getferdi/doc/start-dev-app
Document starting dev app with misty and debug
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 00907d09f..dcee800a9 100644
--- a/README.md
+++ b/README.md
@@ -195,16 +195,16 @@ Run these two commands **simultaneously** in different terminals:
195 195
196```bash 196```bash
197$ npm run dev 197$ npm run dev
198$ npm run start 198$ DEBUG=Ferdi:* npm run start
199``` 199```
200 200
201Optionally, 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)): 201Optionally, 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)):
202 202
203```bash 203```bash
204$ npx misty 204$ DEBUG=Ferdi:* npx misty
205``` 205```
206 206
207Be aware that the development database will be reset regularly. 207Note: please prefer [`debug()`](https://github.com/visionmedia/debug) over `console.log()`.
208 208
209### Packaging 209### Packaging
210 210