Skip to content
This repository has been archived by the owner on Dec 11, 2021. It is now read-only.

dstar4138/standardfile

Repository files navigation

A Rust StandardFile Server Implementation

Linux build status Dependency status License: GPL v3

This is a rust StandardFile implementation.

I welcome bug reports and pull requests!

Usage:

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