TL;DR:
# allow nix to do its thing
direnv allow
# in one tab, run the background services
dev
# in another, run the migrations, then start developing!
make migrate
make server
Dateilager has a fully managed development environment ready for use via nix
. To use this environment, ensure you have nix and direnv
installed, and then run direnv allow
to have the environment build itself.
If you don't want to use nix, you can install the components manually:
- Go 1.22
- Postgresql
- Node v20
- mkcert (https://github.com/FiloSottile/mkcert)
- Protobuf Compiler (https://grpc.io/docs/protoc-installation/)
Ensure that you have a working Go development environment and that you are running at least Go 1.22. You will also require npm
.
DL requires a running postgres instance in the background for development. The dev
script will setup and run this database.
Run
dev
The default Postgres host is 127.0.0.1
you can override it by exporting DB_HOST
.
export DB_HOST=10.0.0.1
We recommend using VSCode for development, and there's an example settings file at .vscode/settings.example.json
to get started with:
cp .vscode/settings.example.json .vscode/settings.json
This will build the server and client executables along with the *.proto
files.
make build
Assuming Postgres is running, you can setup the database using the migrate tool:
make migrate
Ensure there is a Postgres database named dl_tests
. These tests will write to a real database instance
but all writes will be rolled back as every test runs within its own transaction.
make test
Set up a local development environment by resetting the local database, and building an example dataset
within the input/
directory.
make setup-local
Then launch the server process, by default it will run on port 5051.
make server
Our input directory contains 3 folders, all meant as different versions of the same project. There are also diff files listing which files have changed between them.
We can now load these into the database.
make client-update
And then use the client app to read all files within the latest version.
make client-get
You can also filter the results with a prefix search.
make client-get prefix=n1
Or filter for a specific version.
make client-get to_version=1
If you want to rebuild an entire project's directory locally, use the rebuild
command.
make client-rebuild to_version=3 dir=./rebuild
ls -lah ./rebuild
Ensure a server is running with make server
.
Import the DateiLagerGrpcClient
from the module in js/
and use it to query objects:
const client = new DateiLagerGrpcClient("localhost", 5051);
// Get a single object
const object = await client.getObject(1n, "a");
console.log("[getObject] path: " + object.path);
console.log("[getObject] content:\n" + object.content);
// List all objects
for await (const object of client.listObjects(1n, "")) {
console.log("[listObjects] path: " + object.path);
console.log("[listObjects] content:\n" + object.content);
}
Update objects and await the successful commit of a new version:
const stream = client.updateObjects(1n);
stream.send({
path: "a",
mode: 0o755,
content: "foo bar",
});
const version = await stream.complete();
console.log("[updateObject] version: " + version);
When you're ready to release a new version, perform the following steps. Ensure you are on doing these steps on the main
branch
- Update the version in
default.nix
- Update the version in
js/package.json
- Update the version in
js/package-lock.json
(runcd js && npm install
) - Commit the changes (e.g.
git commit -am "Bump version to 0.0.x"
) - Push the changes upstream to main (e.g.
git push origin HEAD
)
New versions are released and hosted on Github. (https://github.com/gadget-inc/dateilager/releases)
Create a new tag and push it to GitHub, GoReleaser will handle building it.
git tag v0.0.x
git push origin v0.0.x
We also need to build the server docker image and push it to Gadget's container registry.
make upload-container-image version=0.0.x
You can sign PASETO tokens locally with this handy online tool: https://token.dev/paseto/. Ensure you use the V2 algorithm in the public mode, and copy the PASTEO public and private key from the development
folder.