Compare commits

..

No commits in common. "07aec6b81636a58e0efc5c2d95909b4411896381" and "e3584623b3a54bd7e17b9e23a0b38d35abde0ea3" have entirely different histories.

5 changed files with 0 additions and 30 deletions

View file

@ -19,13 +19,6 @@ jobs:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Set up .env
run: |
echo "TOKEN_SECRET_KEY=${{ secrets.TOKEN_SECRET_KEY }}" >> ./cms/.env
echo "DB_CONNECTION=${{ vars.DB_CONNECTION }}" >> ./cms/.env
echo "DB_PATH=${{ vars.DB_PATH }}" >> ./cms/.env
- name: Install docker-compose plugin - name: Install docker-compose plugin
run: | run: |
apk add --no-cache docker-cli curl apk add --no-cache docker-cli curl

2
.gitignore vendored
View file

@ -22,5 +22,3 @@ Thumbs.db
# Vite # Vite
vite.config.js.timestamp-* vite.config.js.timestamp-*
vite.config.ts.timestamp-* vite.config.ts.timestamp-*
.manifest

3
.gitmodules vendored
View file

@ -1,3 +0,0 @@
[submodule "cms"]
path = cms
url = https://forgejo.ediv.xyz/alliances-transcoloniales/cms.git

1
cms

@ -1 +0,0 @@
Subproject commit 1e363f6c667c8e04efdccf75baa8dc4fddc51c0f

View file

@ -9,20 +9,3 @@ services:
NODE_ENV: production NODE_ENV: production
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
cms:
build: ./cms
image: alliances-cms
ports:
- "3001:1111"
environment:
- NODE_ENV=production
- TOKEN_SECRET_KEY=${TOKEN_SECRET_KEY}
- DB_PATH=${DB_PATH}
env_file: .env
volumes:
- alliance_volume:/app/.manifest
- /var/run/docker.sock:/var/run/docker.sock
volumes:
alliances_volume: