summaryrefslogtreecommitdiff
path: root/server/.gitignore
AgeCommit message (Collapse)Author
2025-02-03code coverage: Add tests for commonJoel Klinghed
Add coverage for common as well as server. Fix fs_utils::create_dir_allow_existing to fail if entry exists but isn't a dir.
2025-01-26Add basic git supportJoel Klinghed
Pushing a commit to a new branch creates a review. Each project has its own git directory, with githooks installed that talkes with server process via unix sockets.
2025-01-09Move sqlx to "offline mode"Joel Klinghed
Avoid having to have an active server and a migrated database to be able to build. Instead, when a new query is added or the database updated, cargo sqlx prepare needs to be run again, then with a running server and an active database. But only then.
2025-01-04Add docker compose for developmentJoel Klinghed
As both compiling, tests and well, running, needs mariadb setup add a docker image for it. Also prepare for ldap support by adding a openldap image as well. Included .env as well, used by sqlx when compiling query!.
2024-12-28Database connectionJoel Klinghed
2024-12-21Initial commitJoel Klinghed