forked from commune-sh/commune-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Justfile
88 lines (72 loc) · 2.83 KB
/
Justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
set positional-arguments
commit_sha := `git rev-parse --verify --short=7 HEAD`
target_release := "x86_64-unknown-linux-musl"
# Lists all available commands
default:
just --list
# Creates the `.env` file if it doesn't exist
# This indicates the first invocation of `just` so we also
# create the docker folders while we're at it
dotenv:
export DOCKER_USER="$(id -u):$(id -g)" && \
cp -n .env.example .env || true && \
mkdir -p docker/synapse || true
# Dump database to a file
backup_db:
docker compose exec -T synapse_database \
pg_dumpall -c -U synapse_user > ./dump.sql
# Restore database from a file
restore_db:
cat ./dump.sql | docker compose exec -T synapse_database \
psql -U synapse_user -d synapse
# Nuke database
nuke_db:
docker compose exec -T synapse_database \
psql -U synapse_user -d synapse -c "DROP SCHEMA public CASCADE; CREATE SCHEMA public;"
# Generates the synapse configuration file and saves it
gen_synapse_conf: dotenv
docker run -i --rm \
-u "$(id -u):$(id -g)" \
-v ./docker/synapse:/data \
--env-file .env \
matrixdotorg/synapse:v1.96.1 generate
# Generates a de-facto admin user
gen_synapse_admin: dotenv
docker compose exec -i synapse \
register_new_matrix_user http://localhost:8008 \
-c /data/homeserver.yaml \
-u admin \
-p admin \
-a
# Retrieves admin access token uses de-facto admin user and Development Database Credentials
get_access_token:
sed -i "s/COMMUNE_SYNAPSE_ADMIN_TOKEN='.*'/COMMUNE_SYNAPSE_ADMIN_TOKEN='$( \
curl -sS -d '{"type":"m.login.password", "user":"admin", "password":"admin"}' \
http://localhost:8008/_matrix/client/v3/login | jq --raw-output '.access_token' \
)'/" .env
# Runs backend dependency services
backend *args='': dotenv
docker compose up --build $1
# Stops backend dependency services
stop:
docker compose down
# Removes oll Docker related config, volumes and containers for this project
clear: stop
docker compose rm --all --force --volumes --stop
docker volume rm commune_synapse_database || true
# Runs all the tests from the `test` package. Optionally runs a single one if name pattern is provided
e2e *args='':
cargo test --package test -- --nocapture --test-threads=1 $1
# Builds the Server binary used in the Docker Image
docker_build_server:
cargo zigbuild --target {{target_release}} --release -p server
# Builds the Docker image for the backend
docker_build_image: docker_build_server
mkdir tmp/
cp ./target/{{target_release}}/release/server ./tmp/server
chmod +x ./tmp/server
docker build -t "commune:{{commit_sha}}-{{target_release}}" .
# Publishes the Docker image to the GitHub Container Registry
docker_publish_image:
docker tag commune:{{commit_sha}}-{{target_release}} ghcr.io/commune-os/commune:{{commit_sha}}-{{target_release}}
docker push ghcr.io/commune-os/commune:{{commit_sha}}-{{target_release}}