diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml deleted file mode 100644 index 7e0ee67..0000000 --- a/.github/workflows/cd.yml +++ /dev/null @@ -1,59 +0,0 @@ -name: CD - -on: - push: - branches: [ master ] - -jobs: - build: - name: Build and push docker images - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - with: - submodules: recursive - - - name: Build neo4j image - uses: docker/build-push-action@v1.1.0 - with: - repository: ocelotsocialnetwork/develop-neo4j - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - tags: latest - path: Ocelot-Social/neo4j/ - - name: Build backend base image - uses: docker/build-push-action@v1.1.0 - with: - repository: ocelotsocialnetwork/develop-backend - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - tags: build-and-test - target: build-and-test - path: Ocelot-Social/backend/ - - name: Build webapp base image - uses: docker/build-push-action@v1.1.0 - with: - repository: ocelotsocialnetwork/develop-webapp - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - tags: build-and-test - target: build-and-test - path: Ocelot-Social/webapp/ - - - name: Build backend customized image - uses: docker/build-push-action@v1.1.0 - with: - repository: ocelotsocialnetwork/develop-backend - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - tags: latest - path: backend/ - - name: Build webapp customized image - uses: docker/build-push-action@v1.1.0 - with: - repository: ocelotsocialnetwork/develop-webapp - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - tags: latest - path: webapp/ diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 496ee2c..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -.DS_Store \ No newline at end of file diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index 060db51..0000000 --- a/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule "Ocelot-Social"] - path = Ocelot-Social - url = https://github.com/Ocelot-Social-Community/Ocelot-Social.git diff --git a/Ocelot-Social b/Ocelot-Social deleted file mode 160000 index cc9c70d..0000000 --- a/Ocelot-Social +++ /dev/null @@ -1 +0,0 @@ -Subproject commit cc9c70dbe7fc7f1d9bc90c06f3b3e4e78dd71113 diff --git a/backend/Dockerfile b/backend/Dockerfile deleted file mode 100644 index 8951772..0000000 --- a/backend/Dockerfile +++ /dev/null @@ -1,2 +0,0 @@ -FROM ocelotsocialnetwork/develop-backend:build-and-test -COPY constants/links.js constants/metadata.js src/config/ diff --git a/backend/constants/metadata.js b/backend/constants/metadata.js deleted file mode 100644 index 6017cd1..0000000 --- a/backend/constants/metadata.js +++ /dev/null @@ -1,7 +0,0 @@ -export default { - APPLICATION_NAME: 'fyphe_O', - APPLICATION_SHORT_NAME: 'fyphe', - APPLICATION_DESCRIPTION: 'The Schools in Motion Network', - ORGANIZATION_NAME: 'Ensible e.V.', - ORGANIZATION_JURISDICTION: 'Köln', -} diff --git a/webapp/Dockerfile b/webapp/Dockerfile deleted file mode 100644 index e39305f..0000000 --- a/webapp/Dockerfile +++ /dev/null @@ -1,3 +0,0 @@ -FROM ocelotsocialnetwork/develop-webapp:build-and-test -COPY static/ static/ -COPY constants/ constants/ diff --git a/webapp/constants/emails.js b/webapp/constants/emails.js deleted file mode 100644 index 5a69681..0000000 --- a/webapp/constants/emails.js +++ /dev/null @@ -1,4 +0,0 @@ -export default { - SUPPORT: 'support-schools-in-motion@roschaefer.de', - MODERATION: 'moderation-schools-in-motion@roschaefer.de', -} diff --git a/webapp/constants/links.js b/webapp/constants/links.js deleted file mode 100644 index 36ee423..0000000 --- a/webapp/constants/links.js +++ /dev/null @@ -1,7 +0,0 @@ -export default { - ORGANIZATION: 'https://www.youth-and-arts.nrw/', - DONATE: 'https://www.youth-and-arts.nrw/de/kontakt', - IMPRINT: 'https://www.youth-and-arts.nrw/de/impressum', - DATA_PRIVACY: 'https://www.youth-and-arts.nrw/de/datenschutzerklaerung', - FAQ: 'https://www.youth-and-arts.nrw/de/kontakt', -}