Added make target to connect to the test cache.

This commit is contained in:
mikestefanello 2022-02-07 21:23:09 -05:00
parent 156e578dd0
commit 726556e973
2 changed files with 11 additions and 5 deletions

View File

@ -1,17 +1,22 @@
# Connect to the primary database
.PHONY: db
db:
psql postgresql://admin:admin@localhost:5432/app
psql postgresql://admin:admin@localhost:5432/app
# Connect to the test database
.PHONY: db-test
db-test:
psql postgresql://admin:admin@localhost:5432/app_test
psql postgresql://admin:admin@localhost:5432/app_test
# Connect to the cache
# Connect to the primary cache
.PHONY: cache
cache:
redis-cli
redis-cli
# Connect to the test cache
.PHONY: cache-test
cache-test:
redis-cli -n 1
# Install Ent code-generation module
.PHONY: ent-install

View File

@ -172,7 +172,8 @@ The following _make_ commands are available to make it easy to connect to the da
- `make db`: Connects to the primary database
- `make db-test`: Connects to the test database
- `make cache`: Connects to the cache
- `make cache`: Connects to the primary cache
- `make cache-test`: Connects to the test cache
## Service container