This is a rust StandardFile implementation.
I welcome bug reports and pull requests!
To test out with a simple sqlite db:
$ cat .env
export DB_PATH=localite.db
export SALT_PSEUDO_NONCE=123
export SECRET_KEY_BASE=111111111111111
$ source .env && make run
To try it out with mysql:
$ cat .env
export DB_DATABASE=standardfile
export DB_HOST=localhost
export DB_PORT=3306
export DB_USERNAME=stdfile
export DB_PASSWORD=abc
export SALT_PSEUDO_NONCE=123
export SECRET_KEY_BASE=111111111111111
$ source .env && make run-mysql
You could also just run it with docker/docker-compose:
$ docker-compose up --build