From c74dc92febd1841c8ea5ff31caab0f941d57527d Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Sat, 16 Jan 2021 17:07:01 +0100 Subject: Proposal: reorganize app/ folder by modules --- app/integration/plume/bottin.json | 31 ------------------------------- app/integration/plume/docker-compose.yml | 28 ---------------------------- app/integration/plume/plume.env | 31 ------------------------------- 3 files changed, 90 deletions(-) delete mode 100644 app/integration/plume/bottin.json delete mode 100644 app/integration/plume/docker-compose.yml delete mode 100644 app/integration/plume/plume.env (limited to 'app/integration/plume') diff --git a/app/integration/plume/bottin.json b/app/integration/plume/bottin.json deleted file mode 100644 index a970762..0000000 --- a/app/integration/plume/bottin.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "suffix": "dc=deuxfleurs,dc=fr", - "bind": "0.0.0.0:389", - "consul_host": "http://consul:8500", - "log_level": "debug", - "acl": [ - "*,dc=deuxfleurs,dc=fr::read:*:* !userpassword", - "*::read modify:SELF:*", - "ANONYMOUS::bind:*,ou=users,dc=deuxfleurs,dc=fr:", - "ANONYMOUS::bind:cn=admin,dc=deuxfleurs,dc=fr:", - "*,ou=services,ou=users,dc=deuxfleurs,dc=fr::bind:*,ou=users,dc=deuxfleurs,dc=fr:*", - "*,ou=services,ou=users,dc=deuxfleurs,dc=fr::read:*:*", - - "*:cn=asso_deuxfleurs,ou=groups,dc=deuxfleurs,dc=fr:add:*,ou=invitations,dc=deuxfleurs,dc=fr:*", - "ANONYMOUS::bind:*,ou=invitations,dc=deuxfleurs,dc=fr:", - "*,ou=invitations,dc=deuxfleurs,dc=fr::delete:SELF:*", - - "*:cn=asso_deuxfleurs,ou=groups,dc=deuxfleurs,dc=fr:add:*,ou=users,dc=deuxfleurs,dc=fr:*", - "*,ou=invitations,dc=deuxfleurs,dc=fr::add:*,ou=users,dc=deuxfleurs,dc=fr:*", - - "*:cn=asso_deuxfleurs,ou=groups,dc=deuxfleurs,dc=fr:modifyAdd:cn=email,ou=groups,dc=deuxfleurs,dc=fr:*", - "*,ou=invitations,dc=deuxfleurs,dc=fr::modifyAdd:cn=email,ou=groups,dc=deuxfleurs,dc=fr:*", - "*:cn=asso_deuxfleurs,ou=groups,dc=deuxfleurs,dc=fr:modifyAdd:cn=seafile,ou=groups,dc=deuxfleurs,dc=fr:*", - "*,ou=invitations,dc=deuxfleurs,dc=fr::modifyAdd:cn=seafile,ou=groups,dc=deuxfleurs,dc=fr:*", - "*:cn=asso_deuxfleurs,ou=groups,dc=deuxfleurs,dc=fr:modifyAdd:cn=nextcloud,ou=groups,dc=deuxfleurs,dc=fr:*", - "*,ou=invitations,dc=deuxfleurs,dc=fr::modifyAdd:cn=seafile,ou=nextcloud,dc=deuxfleurs,dc=fr:*", - - "cn=admin,dc=deuxfleurs,dc=fr::read add modify delete:*:*", - "*:cn=admin,ou=groups,dc=deuxfleurs,dc=fr:read add modify delete:*:*" - ] -} diff --git a/app/integration/plume/docker-compose.yml b/app/integration/plume/docker-compose.yml deleted file mode 100644 index b88de8a..0000000 --- a/app/integration/plume/docker-compose.yml +++ /dev/null @@ -1,28 +0,0 @@ -version: '3.4' -services: - plume: - image: superboum/plume:v1 - env_file: - - plume.env - depends_on: - - consul - - postgres - ports: - - "7878:7878" - - postgres: - image: postgres:9.6.19 - environment: - - POSTGRES_DB=plume - - POSTGRES_USER=plume - - POSTGRES_PASSWORD=plume - - bottin: - image: lxpz/bottin_amd64:14 - depends_on: - - consul - volumes: - - ./bottin.json:/config.json - - consul: - image: consul:1.8.4 diff --git a/app/integration/plume/plume.env b/app/integration/plume/plume.env deleted file mode 100644 index 88c62dc..0000000 --- a/app/integration/plume/plume.env +++ /dev/null @@ -1,31 +0,0 @@ -BASE_URL=integration.env -# generate one with openssl rand -base64 32 -ROCKET_SECRET_KEY=cXZbKoxWIBo0wdaD8tbA1B3BlH2LBSUmgzdyZZr8QxI= - -# Mail settings -#MAIL_SERVER=smtp.example.org -#MAIL_USER=example -#MAIL_PASSWORD=123456 -#MAIL_HELO_NAME=example.org - -# DATABASE SETUP -POSTGRES_PASSWORD=plume -POSTGRES_USER=plume -POSTGRES_DB=plume -DATABASE_URL=postgres://plume:plume@postgres:5432/plume -MIGRATION_DIRECTORY=migrations/postgres - -USE_HTTPS=0 -ROCKET_ADDRESS=0.0.0.0 -ROCKET_PORT=7878 - -MEDIA_UPLOAD_DIRECTORY=/app/static/media -SEARCH_INDEX=/app/search_index -DOMAIN_NAME="integration.env" -INSTANCE_NAME="Integration Instance" - -LDAP_ADDR=ldap://bottin:389 -LDAP_BASE_DN=ou=users,dc=deuxfleurs,dc=fr -LDAP_USER_NAME_ATTR=cn -LDAP_USER_MAIL_ATTR=mail -LDAP_TLS=false -- cgit v1.2.3