Skip to content

Commit

Permalink
fix local development when using it downstream
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Rockman committed Sep 15, 2017
1 parent 3968e14 commit fe774fc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
dev:
build: .
dockerfile: Dockerfile
command: local
command: /usr/local/service/estate/local.sh
ports:
- 8000:8000
- 3000:3000
volumes:
- $PWD/estate:/usr/local/service/estate
- $PWD/webpack:/usr/local/service/webpack
- $PWD/scripts/local.sh:/usr/bin/local
- /var/run/docker.sock:/var/run/docker.sock
- /tmp:/tmp
environment:
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions estate/settings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
from .sentry import * # NOQA
from .estate import * # NOQA
try:
from .local import * # NOQA
from .custom import * # NOQA
except ImportError:
pass
try:
from .custom import * # NOQA
from .local import * # NOQA
except ImportError:
pass

0 comments on commit fe774fc

Please sign in to comment.