Skip to content

Commit

Permalink
Merge pull request #81 from appsembler/fix_devstack_links
Browse files Browse the repository at this point in the history
fix `amc.activation_links` link domain
  • Loading branch information
OmarIthawi authored Jul 29, 2022
2 parents 5c1202b + f98b150 commit e25066d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tahoe.mk
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ amc.provision: ## Initializes the AMC
docker exec -it tahoe.$(COMPOSE_PROJECT_NAME).amc-frontend npm install

amc.activation_links: ## List activation links from the AMC log
docker-compose $(DOCKER_COMPOSE_FILES) logs --tail=1000 amc | grep -o 'http:.*accounts/confirm-email/[^/]*/'
docker-compose $(DOCKER_COMPOSE_FILES) logs --tail=1000 amc \
| grep -o 'http:.*accounts/confirm-email/[^/]*/' \
| sed -s 's/tahoe.devstack.amc:19000/localhost:13000/' \
| uniq

amc-shell:
docker exec -it tahoe.$(COMPOSE_PROJECT_NAME).amc bash
Expand Down

0 comments on commit e25066d

Please sign in to comment.