chore: Improve performance in dev by running Node/Yarn outside of docker (#1271)

* Improve performance in dev by running Node/Yarn outside of docker

* Transpose exposed port numbers by 100, so less likely conflict with host processes
This commit is contained in:
Tom Moor
2020-05-17 18:12:48 -07:00
committed by GitHub
parent e0b33ee576
commit 18cf148bd1
4 changed files with 13 additions and 9 deletions

View File

@@ -6,9 +6,9 @@
SECRET_KEY=generate_a_new_key
UTILS_SECRET=generate_a_new_key
DATABASE_URL=postgres://user:pass@postgres:5432/outline
DATABASE_URL_TEST=postgres://user:pass@postgres:5432/outline-test
REDIS_URL=redis://redis:6379
DATABASE_URL=postgres://user:pass@localhost:5532/outline
DATABASE_URL_TEST=postgres://user:pass@localhost:5532/outline-test
REDIS_URL=redis://localhost:6479
URL=http://localhost:3000
PORT=3000