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

DAM plugin version bumps, config adjustments, and transition from AWS to GCS for assets_variants volume #182

Merged
merged 2 commits into from
Nov 16, 2023
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
123 changes: 0 additions & 123 deletions .github/workflows/develop-pr-gae.yaml

This file was deleted.

88 changes: 0 additions & 88 deletions .github/workflows/master-pr-gae.yaml

This file was deleted.

14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,17 @@ The /api/assets folder has been added to the .gitignore file for obvious file-si

A docker-compose.yml file is simply a way to define multiple images/containers that may be dependent on each other, and any environment variables that each image is expecting. When these defined containers and dependencies are brought up with the ```docker-compose up``` command each container is started as the dependencies dictate.
h the ```docker-compose up``` command each container is started as the dependencies dictate.


#### How to create a dump of your local DB

1. Containers need to be running, we're going to ssh into the postgres one:
* `docker container ls`
* `docker exec -it <POSTGRES_CONTAINER_ID> /bin/sh`
2. Create the dump file within the container:
* `pg_dump -U craft <CRAFT_DATABASE_NAME> >> whatever_name_you_want.sql`
3. Retrieve & save the dump file to your local:
* Open a new terminal window
* `docker cp <POSTGRES_CONTAINER_ID>:/path/to/whatever_name_you_want.sql /local/path/to/whatever_name_you_want.sql`


1 change: 0 additions & 1 deletion api/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"require": {
"carlcs/craft-assetmetadata": "^4.0",
"castiron/next-builds": "^1.0",
"craftcms/aws-s3": "2.0.3",
"craftcms/cms": "4.5.4",
"craftcms/contact-form": "3.0.1",
"craftcms/contact-form-honeypot": "^2.0.0",
Expand Down
Loading
Loading