Skip to content

Commit

Permalink
chore: add other helpful seeding data
Browse files Browse the repository at this point in the history
  • Loading branch information
shreddedbacon committed Jul 8, 2024
1 parent 2db5e58 commit ad20e12
Show file tree
Hide file tree
Showing 2 changed files with 113 additions and 0 deletions.
1 change: 1 addition & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ services:
- S3_BAAS_SECRET_ACCESS_KEY=minio123
- CONSOLE_LOGGING_LEVEL=debug
- SIDECAR_HANDLER_HOST=apisidecarhandler
- ENABLE_SAVED_HISTORY_EXPORT=true
depends_on:
api-lagoon-migrations:
condition: service_started
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -803,4 +803,116 @@ mutation PopulateApi {
) {
id
}

UIProject1Environment2addServices1: addOrUpdateEnvironmentService(
input: {
environment: 4
name: "cli"
type: "cli-persistent"
containers: [{name: "cli"}]
}
){
id
name
type
}
UIProject1Environment2addServices2: addOrUpdateEnvironmentService(
input: {
environment: 4
name: "nginx"
type: "nginx-php-persistent"
containers: [{name: "nginx"},{name:"php"}]
}
){
id
name
type
}
UIProject1Environment2addServices3: addOrUpdateEnvironmentService(
input: {
environment: 4
name: "mariadb"
type: "mariadb-single"
containers: [{name: "mariadb"}]
}
){
id
name
type
}

UIProject1Environment3addServices1: addOrUpdateEnvironmentService(
input: {
environment: 5
name: "cli"
type: "cli-persistent"
containers: [{name: "cli"}]
}
){
id
name
type
}
UIProject1Environment3addServices2: addOrUpdateEnvironmentService(
input: {
environment: 5
name: "nginx"
type: "nginx-php-persistent"
containers: [{name: "nginx"},{name:"php"}]
}
){
id
name
type
}
UIProject1Environment3addServices3: addOrUpdateEnvironmentService(
input: {
environment: 5
name: "mariadb"
type: "mariadb-single"
containers: [{name: "mariadb"}]
}
){
id
name
type
}

UIProject1Environment4addServices1: addOrUpdateEnvironmentService(
input: {
environment: 6
name: "cli"
type: "cli-persistent"
containers: [{name: "cli"}]
}
){
id
name
type
}
UIProject1Environment4addServices2: addOrUpdateEnvironmentService(
input: {
environment: 6
name: "nginx"
type: "nginx-php-persistent"
containers: [{name: "nginx"},{name:"php"}]
}
){
id
name
type
}
UIProject1Environment4addServices3: addOrUpdateEnvironmentService(
input: {
environment: 6
name: "mariadb"
type: "mariadb-single"
containers: [{name: "mariadb"}]
}
){
id
name
type
}

}

0 comments on commit ad20e12

Please sign in to comment.