-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
35 changed files
with
941 additions
and
330 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
DB_VENDOR=postgres | ||
KEYCLOAK_DATABASE_HOST=keycloak-db | ||
KEYCLOAK_DATABASE_PORT=5432 | ||
# Database name (replace with yours) | ||
KEYCLOAK_DATABASE_NAME=keycloakdb | ||
# Database user (replace with yours) | ||
KEYCLOAK_DATABASE_USER=hhGArHWVrVQjuDcgBUNNlQqZNfqyNPfQ | ||
# Database password (replace with yours) | ||
KEYCLOAK_DATABASE_PASSWORD=vW9WtXmFWpsq5tATgcYNAi62cC1tWar1BsSrksBodMrra2bv4NHVvRyIm9k29Ro9 | ||
|
||
# Keycloak user (replace with yours) | ||
KEYCLOAK_USER=keycloakadmin | ||
# Keycloak password (replace with yours) | ||
KEYCLOAK_PASSWORD=rwXPqspCABJzqh47i723wf9 | ||
|
||
PROXY_ADDRESS_FORWARDING='true' | ||
KEYCLOAK_LOGLEVEL=DEBUG |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
colander/core/migrations/0009_entityrelation_attributes.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Generated by Django 3.2.18 on 2023-03-09 18:16 | ||
|
||
import django.contrib.postgres.fields.hstore | ||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core', '0008_pirogueexperiment_aes_trace'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='entityrelation', | ||
name='attributes', | ||
field=django.contrib.postgres.fields.hstore.HStoreField(blank=True, null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Generated by Django 3.2.18 on 2023-03-18 15:22 | ||
|
||
import django.contrib.postgres.fields.hstore | ||
from django.db import migrations, models | ||
import django.utils.timezone | ||
import uuid | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core', '0009_entityrelation_attributes'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='BackendCredentials', | ||
fields=[ | ||
('id', models.UUIDField(default=uuid.uuid4, editable=False, help_text='Unique identifier.', primary_key=True, serialize=False)), | ||
('backend', models.CharField(default='', max_length=512, verbose_name='backend identifier')), | ||
('last_usage', models.DateTimeField(default=django.utils.timezone.now)), | ||
('credentials', django.contrib.postgres.fields.hstore.HStoreField(default=dict)), | ||
], | ||
options={ | ||
'ordering': ['last_usage'], | ||
'unique_together': {('backend', 'credentials')}, | ||
}, | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.