diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2025-01-29 00:34:30 +0100 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2025-01-29 00:34:30 +0100 |
| commit | 05b674190f26e2a58cc7b7288586c031552d50f3 (patch) | |
| tree | 452035e852a7012061c9424a9dc0f56fcad129ee /server/README | |
| parent | 145b93302cbb7cb090c90fd07ed4ebabf742e453 (diff) | |
Add git-server to docker-compose
To make a githook that can run on alpine images (using musl) they
need to be cross-compiled. Then it became apparent that the githook
binary was pulling in all the same dependencies as the server was.
This is not good, but apparently also not something Rust/Cargo has
figured out. RFC:s has been shutdown. workspace might be an option
but then I probably need to also add a "code shared by both githook
and server" library that both can link. Problem for another day.
Diffstat (limited to 'server/README')
| -rw-r--r-- | server/README | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/server/README b/server/README new file mode 100644 index 0000000..e0ecaf9 --- /dev/null +++ b/server/README @@ -0,0 +1,10 @@ +Development setup +================= + +Start git, ldap and mariadb in docker/dev using docker compose up or simular. +You might have to create docker/git/authorized_keys to be able to mount it. + +Then compile, and because rust hasn't figured out how to do dependencies per +artifact, you have to do this: +cargo build --target=x86_64-unknown-linux-musl --bin eyeballs-githook && cargo build --features="build-server" && cargo run --features="build-server" + |
