Skip to content

Commit

Permalink
Merge pull request #1541 from GSA/update-deployment-section
Browse files Browse the repository at this point in the history
  • Loading branch information
rshewitt authored Jan 31, 2025
2 parents 2a4b81d + d2f293c commit 9b9a234
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ debug:
up:
docker compose up $(ARGS)

down:
docker compose down

update-dependencies:
docker compose run --rm -T ckan /app/ckan/freeze-requirements.sh $(shell id -u) $(shell id -g)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,15 +108,15 @@ Copy `vars.yml.template` to `vars.yml`, and customize the values in that file. T

Create the database used by CKAN itself. You have to wait a bit for the datastore DB to be available (see [the cloud.gov instructions on how to know when it's up](https://cloud.gov/docs/services/relational-database/#instance-creation-time)).

$ cf create-service aws-rds small-psql ${app_name}-db -c '{"version": "11"}'
$ cf create-service aws-rds small-psql ${app_name}-db -c '{"version": "15"}'

Create the Redis service for cache

$ cf create-service aws-elasticache-redis redis-dev ${app_name}-redis

Create the SOLR service for data search

$ cf create-service solr-cloud base ${app_name}-solr -c solr/service-config-${space}.json -b ssb-solr-gsa-datagov-${space}
$ cf create-service solr-on-ecs base ${app_name}-solr -c solr/service-config-${space}.json -b "ssb-solrcloud-gsa-datagov-${space}"

Create the secrets service to store secret environment variables. See
[Secrets](#secrets) below.
Expand Down

0 comments on commit 9b9a234

Please sign in to comment.