Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation/local setup update #98

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
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: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ SECRET_KEY_BASE=CHANGEME
MAX_PERFORMANCE_CACHE_SIZE=8MB

## For localhost development, use full path. For AWS S3, use just `authorities`.
AUTHORITIES_PATH=/path/to/files/for/config/authorities
# AUTHORITIES_PATH=/path/to/files/for/config/authorities #<= No longer used
# AUTHORITIES_PATH=authorities

## --------------------
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ services:
ports:
- "3000:3000"
depends_on:
- mysql
- qa-mariadb

mysql:
qa-mariadb:
image: mariadb:10.6 # Not specifying version causes a runtime error: "undefined method `encoding' for -0.0:BigDecimal"
restart: always
container_name: ld4p-qa_server-mysql
container_name: ld4p-qa_server-qa-mariadb
environment:
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
- MYSQL_DATABASE=${MYSQL_DATABASE_NAME_PREFIX}_development
Expand Down