This is a template implementation of command-line local-first application with a synchronisation server to go along with it. It features complete option parsing, like in template-optparse, a command-line tool like in template-cli, an api server like in template-api-server-with-auth-and-cli as well as a full synchronisation implementation. Both the server and the client use Sqlite to store the data that they synchronise.
- Haskell code for an API-server
- Haskell code for an accompanying command-line tool
- Haskell code for an implementation of synchronisation between those two.
There types of synchronisation examples are implemented:
- Append-only items
- Immutable items
- Mutable items with safe merge conflicts
- Database definitions for both the server and the client
- Per-route integration tests for the API server
- Per-command integration test for the CLI tool
- Option parsing & Option parsing tests for both the server and the CLI tool
- Stack build
- Cabal build
- Nix build
- Statically linked Nix build
- NixOS module for hosting the server
- Nix home manager module for using the client with automated syncing
- Weeder check
- Test coverage report
- Flake-based CI
- Pre-commit hooks
- ormolu
- hlint
- nixpkgs-fmt
This template is not free to use. See https://template.cs-syd.eu/template/NorfairKing/template-local-first-app-with-sync-server for more information.
Copyright (c) 2020-2024 Tom Sydney Kerckhove.
All Rights Reserved.
To use this template in a new project, choose the name for your project, for example homeless-shelter
.
Then use template-filler to use the template, like this:
template-filler --source /path/to/this/template-local-first-app-with-sync-server --destination /path/to/your/homelessshelter --find FooBar --replace HomelessShelter
This template contains these haskell packages and notable modules:
foo-bar-data
: The data that is common across the server and the client.Foo.Bar.Data.Thing
: This is where the type to-be-synced is defined:Thing
.
foo-bar-data-gen
: Generators and tests for those typesFoo.Bar.Data.Thing.Gen
: The generator forThing
.
foo-bar-server-data
: The server-specific data types and database definition.Foo.Bar.Server.Data.DB
: The server database definition
foo-bar-server-data-gen
: Generators and tests for those typesfoo-bar-client-data
: The client-specific data types and database definition.Foo.Bar.Client.Data.DB
: The client database definition
foo-bar-client-data-gen
: Generators and tests for those typesfoo-bar-api
: The API, as aservant
-based type definition, and related data types.Foo.Bar.API.Data
: The API data type definitionsFoo.Bar.API
: The API Type definition
foo-bar-api-gen
: The generators and tests for the API and its data types.FooBar.API.Data.Gen
: Generators for the API data types
foo-bar-api-server
: The API server that implements this API.Foo.Bar.API.Server.OptParse
: Option parsingFoo.Bar.API.Server.Env
: The (read-only) environment and related functionsFoo.Bar.API.Server.Handler.<CommandName>
: One module per command of the CLI.
foo-bar-api-server-gen
: The generators and tests for the API server.Foo.Bar.API.Server.TestUtils
: Utility functions to write tests that use the API serverFoo.Bar.API.Server.Handler.<CommandName>Spec
: One module per handler containing its testsFoo.Bar.API.Server.Handler.Sync
: The server-side implementation of synchronisation.
foo-bar-client
: The client record of functions to call the API server.- The
Foo.Bar.Client.foo-barClient
record.
- The
foo-bar-cli
: An example command-line tool to call the API server.Foo.Bar.CLI.OptParse
: Option parsingFoo.Bar.CLI.Env
: The (read-only) environment and related functionsFoo.Bar.CLI.Command.<CommandName>
: One module per command of the CLI.Foo.Bar.CLI.Command.Sync
: The client-side implementation of synchronisation.
This template features three types of synchronisation:
- Append-only items via
appendful
- Immutable items via
mergeless
- Mutable items with safe merge conflicts via
mergeful
There is one example for each. Find the details here:
- The request and response type definitions in
Foo.Bar.API.Data
- The server implementation in
Foo.Bar.API.Server.Handler.Sync
- The client implementation in
Foo.Bar.CLI.Commands.Sync
You can delete whichever of these you do not need, and use the others.
The option parsing for both foo-bar-cli
and foo-bar-api-server
is based on the option parsing template.
It is included in this template so you will not need to also buy the option parsing template.
For more information about how to use the option parsing, follow the instructions in template-cli/src/Foo/Bar/Cli/OptParse.hs
.
If you don't need a nix build, remove these files:
rm -rf *.nix nix
The project overlay is defined in nix/overlay.nix
.
In nix/nixos-module.nix
, we define a NixOS module for hosting the sync server.
In nix/home-manager-module.nix
, we define a nix home manager module for using the project on NixOS with automatic syncing.
In nix/nixos-module-test.nix
, both of those are tested. This test is not run on CI because GitHub actions does not support it.
See the instructions in nix/overlay.nix
for more details.
-
Add the endpoint in
foo-bar-api/src/Foo/Bar/API.hs
. -
Add a handler module in
foo-bar-api-server/src/Foo/Bar/API/Server/Handler/<RouteName>hs
with a function as follows:handle<RouteName> :: H ()
Give it a type according to the endpoint type. If it requires authentication, add
AuthCookie
as the first argument. -
Hook up the handler in the
foo-barHandlers
record infoo-bar-api-server/src/Foo/Bar/API/Server.hs
.If the endpoint requires authentication, use the
protected
combinator. -
Add tests in
foo-bar-api-server-gen/test/Foo/Bar/API/Server/Handler/<RouteName>Spec.hs
-
Add the new command's option parsing in the
Foo.Bar.CLI.OptParse
module according to the instructions within. -
Add a
Foo.Bar.CLI.Command.<CommandName>
module with a function as follows:commandName :: CommandNameSettings -> C ()
-
Add a case to the
dispatch
function inFoo.Bar.CLI
. -
Add tests in
Foo.Bar.CLI.Command.<CommandName>Spec
.
To add another piece to synchronise on, first you need to make the following design decision to figure out which syncing library to use:
- Should it be possible to modify the items? If so, use mergeful like the
ServerAppendfulThing
example. - If not, should it be possible to delete the items? If so, use mergeless like the
ServerMergelessThing
example. - If not, the data is add-only, so use appendful like the
ServerMergefulThing
example.
Then make the following changes:
- Add a data type for the thing you want to sync, like in
foo-bar-data/src/Foo/Bar/Data/Thing.hs
. - Add a declaration of a table on the server side for it, in
foo-bar-api-server-data/src/Foo/Bar/API/Server/Data/DB.hs
. This table will likely have auser
column, to separate the syncing per server. When usingmergeful
, you will also need aserverTime :: ServerTime
field, to represent the version number on the server side. - Add a declaration of a table on the client side for it, in
foo-bar-client-data/src/Foo/Bar/Client/Data/DB.hs
. This table will have to have extra fields, on top of the data of theThing
, depending on which library you use. In any case, you will need aserverId :: Maybe ServerThingId
field, to represent that the thing has been synced. When usingmergeful
, you will also need these fields:deletedLocally :: Bool
, to represent that the thing has been deleted locally but that that deletion has not been synced.modifiedLocally :: Bool
, to represent that the thing has been changed locally but that that modification has not been synced.serverTime :: Bool
, to represent the synced version number
- Change the
SyncRequest
andSyncResponse
type infoo-bar-api/src/Foo/Bar/API/Data.hs
to include a field for syncing the new type. When syncing multiple things, these types can just contain one field for each type of thing to sync. - Implement the server-side of the synchronisation in
foo-bar-api-server/src/Foo/Bar/API/Server/Handler/Sync.hs
following the documentation in your chosen synchronisation library. Because we use persistent to store the things, you can probably use the-persistent
version of the synchronisation library. - Implement the client-side of the synchronisation in
foo-bar-cli/src/Foo/Bar/CLI/Commands/Sync.hs
following the documentation in your chosen synchronisation library.