chore : rename Coltura to Starseed
Some checks failed
Auto Tag Develop / tag (push) Has been cancelled

- Rename project name across code, configs, docs, dev/prod infra
- Dev: DOCKER_APP_NAME + POSTGRES_DB switched to starseed, containers become php-starseed-fpm / nginx-starseed / starseed-db-1
- Dev: mount nginx.conf on default.conf instead of starseed.conf to avoid alphabetical-order clash with image's default site
- Makefile: export CURRENT_UID/CURRENT_GID at top level so docker compose builds (db-reset etc.) get them
- Prod: image registry path, container_name, volumes, vhost server_name + paths, DATABASE_URL, CORS, CI workflow
- Add doc/prompt-rename-prod.md with the migration runbook for the prod server (DB rename, FS move, vhost, Let's Encrypt)
This commit is contained in:
Matthieu
2026-05-19 08:24:19 +02:00
parent cd17248427
commit 93cbd48bf5
40 changed files with 476 additions and 234 deletions

View File

@@ -1,8 +1,8 @@
DOCKER_APP_NAME=coltura
DOCKER_APP_NAME=starseed
DOCKER_PHP_VERSION=8.4.6
DOCKER_NODE_VERSION=24.12.0
APP_USER=www-data
POSTGRES_DB=coltura
POSTGRES_DB=starseed
POSTGRES_USER=root
POSTGRES_PASSWORD=root
POSTGRES_PORT=5437

View File

@@ -2,11 +2,11 @@ APP_ENV=prod
APP_DEBUG=0
APP_SECRET=CHANGE_ME_IN_PRODUCTION
DATABASE_URL="postgresql://coltura:CHANGE_ME@host.docker.internal:5432/coltura?serverVersion=16&charset=utf8"
DATABASE_URL="postgresql://starseed:CHANGE_ME@host.docker.internal:5432/starseed_prod?serverVersion=16&charset=utf8"
JWT_PASSPHRASE=CHANGE_ME_IN_PRODUCTION
JWT_COOKIE_SECURE=1
JWT_TOKEN_TTL=86400
JWT_COOKIE_TTL=86400
CORS_ALLOW_ORIGIN='^https://coltura\.malio-dev\.fr$'
CORS_ALLOW_ORIGIN='^https://starseed\.malio-dev\.fr$'

View File

@@ -60,7 +60,7 @@ RUN rm -f /etc/nginx/sites-enabled/default
# Configs
COPY infra/prod/supervisord.conf /etc/supervisor/conf.d/app.conf
COPY infra/prod/nginx.conf /etc/nginx/sites-enabled/coltura.conf
COPY infra/prod/nginx.conf /etc/nginx/sites-enabled/starseed.conf
# Backend from stage 1
COPY --from=backend-build /app /var/www/html

View File

@@ -4,9 +4,9 @@ set -euo pipefail
cd "$(dirname "$0")"
TAG="${1:-latest}"
export COLTURA_IMAGE_TAG="$TAG"
export STARSEED_IMAGE_TAG="$TAG"
echo "==> Deploying coltura:${TAG}..."
echo "==> Deploying starseed:${TAG}..."
echo "==> Enabling maintenance mode..."
touch maintenance.on

View File

@@ -1,16 +1,16 @@
services:
app:
image: gitea.malio.fr/malio-dev/coltura:${COLTURA_IMAGE_TAG:-latest}
container_name: coltura-app
image: gitea.malio.fr/malio-dev/starseed:${STARSEED_IMAGE_TAG:-latest}
container_name: starseed-app
env_file: .env
ports:
- "8086:80"
volumes:
- ./config/jwt:/var/www/html/config/jwt:ro
- coltura_logs:/var/www/html/var/log
- starseed_logs:/var/www/html/var/log
extra_hosts:
- "host.docker.internal:host-gateway"
restart: unless-stopped
volumes:
coltura_logs:
starseed_logs:

View File

@@ -1,12 +1,12 @@
server {
listen 80;
listen [::]:80;
server_name coltura.malio-dev.fr;
server_name starseed.malio-dev.fr;
root /var/www/coltura/public;
root /var/www/starseed/public;
# Maintenance mode
if (-f /var/www/coltura/maintenance.on) {
if (-f /var/www/starseed/maintenance.on) {
return 503;
}