First version

pull/2/head
Baptiste Gelez il y a 5 ans
révision 3a072befae

@ -0,0 +1,8 @@
MIGRATION_DIRECTORY=migrations/sqlite
DATABASE_URL=plume.db
BASE_URL=%BASE_URL%
ROCKET_SECRET_KEY=%SECRET%
ROCKET_PORT=7878
ROCKET_ADDRESS=0.0.0.0
MAIL_ADDRESS=no-reply@%BASE_URL%
RUST_BACKTRACE=1

4
.gitignore vendored

@ -0,0 +1,4 @@
*.tar.gz
Caddyfile
Caddyfile.*
!Caddyfile.template

@ -0,0 +1,6 @@
%BASE_URL% {
proxy / localhost:%PORT% {
transparent
}
tls off
}

@ -0,0 +1,3 @@
# Plume CI
Experimental script to automatically deploy test instance for each proposed PR.

@ -0,0 +1,47 @@
#!/bin/bash
set -x
inotifywait -m ./ -e create -e moved_to |
while read path action file; do
if [[ ! $file =~ ".tar.gz" ]]; then
continue
fi;
id=$(basename -s .tar.gz $file)
if [ -d ../plume_deploy/$id ]; then
rm -rf ../plume_deploy/$id
fi;
mkdir ../plume_deploy/$id
gzip -dc $file | tar -C ../plume_deploy/$id -xvzf -
env_temp=$(pwd)/.env.template
pushd ../plume_deploy/$id
secret=$(openssl rand -base64 32)
domain=pr-$id.joinplu.me
found=0
port=8000
while [ $found -ne 1 ]; do
if [ $(netstat -tlnu | grep :$port | wc -l) == "0" ]; then
found=1
else
port=$((port + 1))
fi;
done;
sed -e "s;%BASE_URL%;$domain;g" -e "s;%SECRET%;$secret;g" $env_temp | tee .env
cont=plume-pr-$id
docker run -td --name $cont --rm -p 127.0.0.1:$port:7878 --mount type=bind,src=$(pwd),dst=/app plumeorg/plume-buildenv:v0.0.5
docker exec -w /app $cont ls -al
docker exec -w /app $cont /app/bin/diesel migration run
docker exec -w /app $cont /app/bin/plm instance new -n "PR #$id"
docker exec -w /app $cont /app/bin/plm users new -a -n admin -p admin123 -N "Admin #$id" -e "admin@$domain"
docker exec -w /app $cont /app/bin/plm search init
docker exec -w /app -d $cont /app/bin/plume
popd
sed -e "s;%BASE_URL%;$domain;g" -e "s;%PORT%;$port;g" Caddyfile.template | tee Caddyfile.$id
cat Caddyfile Caddyfile.$id > Caddyfile
done
Chargement…
Annuler
Enregistrer