Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,13 +211,15 @@ services:

postgres:
image: postgres:9.4
container_name: tahoe.devstack.postgres
volumes:
- postgres_data:/var/lib/postgresql/data
ports:
- 5432:5432

redis:
image: redis:3.0
container_name: tahoe.devstack.redis
ports:
- 6379:6379
volumes:
Expand Down
3 changes: 1 addition & 2 deletions tahoe.mk
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ tahoe.up: ## Run the devstack with proper Tahoe settings, use instead of `$ mak
make dev.up
@sleep 1
make tahoe.init
test -d $(CUSTOMER_THEME_DIR) || (make tahoe.theme.reset && tahoe.theme.compile)
test -d $(CUSTOMER_THEME_DIR) || (make tahoe.theme.reset && make tahoe.theme.compile)
test -d $(AMC_DIR) || make amc.reset
test -f $(AMC_DIR)/amc/.env || make amc.env-file
make tahoe.chown
Expand Down Expand Up @@ -107,7 +107,6 @@ amc.reset: ## Removes and re-initialize AMC
cd $(AMC_DIR)/amc/ && virtualenv -p python3 env
cd $(AMC_DIR)/amc/ && . env/bin/activate && pip install --upgrade pip
cd $(AMC_DIR)/amc/ && . env/bin/activate && pip install -r ../requirements/local.txt
cd $(AMC_DIR)/amc/ && . env/bin/activate && pip install mysql-python

cd $(AMC_DIR)/frontend/ && npm install || true

Expand Down