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

Use EB parameters from repo #29

Merged
merged 2 commits into from
Jan 14, 2025
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
2 changes: 2 additions & 0 deletions core/.env.ci.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
APP_ENV=ci
SYMFONY_ENV=ci
4 changes: 4 additions & 0 deletions core/dbschema/createdbs.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
CREATE DATABASE IF NOT EXISTS eb;
CREATE DATABASE IF NOT EXISTS eb_test;
johanib marked this conversation as resolved.
Show resolved Hide resolved
CREATE DATABASE IF NOT EXISTS teams;
CREATE DATABASE IF NOT EXISTS aa;
CREATE DATABASE IF NOT EXISTS pdp;
Expand All @@ -11,6 +12,9 @@ CREATE DATABASE IF NOT EXISTS sbs;
CREATE USER IF NOT EXISTS 'ebrw'@'%' IDENTIFIED BY 'secret';
GRANT ALL PRIVILEGES ON eb.* TO 'ebrw'@'%';

CREATE USER IF NOT EXISTS 'eb_testrw'@'%' IDENTIFIED BY 'secret';
GRANT ALL PRIVILEGES ON eb_test.* TO 'eb_testrw'@'%';

CREATE USER IF NOT EXISTS 'teamsrw'@'%' IDENTIFIED BY 'secret';
GRANT ALL PRIVILEGES ON teams.* TO 'teamsrw'@'%';

Expand Down
1 change: 0 additions & 1 deletion core/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ services:
image: ghcr.io/openconext/openconext-engineblock/openconext-engineblock:prod
volumes:
- ./:/config
- ./engine/parameters.yml:/var/www/html/app/config/parameters.yml
networks:
coreconextdev:
healthcheck:
Expand Down
1 change: 1 addition & 0 deletions core/engine/docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ services:
- ./engine/appconf.conf:/etc/apache2/sites-enabled/appconf.conf
environment:
- APP_ENV=${APP_ENV:-dev}
- SYMFONY_ENV=${APP_ENV:-dev}
- APP_DEBUG=true
300 changes: 0 additions & 300 deletions core/engine/parameters.yml

This file was deleted.

Loading