diff --git a/docs/tutorials/run-a-server.mdx b/docs/tutorials/run-a-server.mdx index 5854b85..da4b107 100644 --- a/docs/tutorials/run-a-server.mdx +++ b/docs/tutorials/run-a-server.mdx @@ -71,7 +71,7 @@ new Earthstar.Server([ console.log(`Creating replica for ${address}...`); return new Earthstar.Replica({ - driver: new Earthstar.ReplicaDriverFs(address, "./data"), + driver: new Earthstar.ReplicaDriverFs(address, "./.share_data"), }); }, }), @@ -111,7 +111,7 @@ new Earthstar.Server([ console.log(`Creating replica for ${address}...`); return new Earthstar.Replica({ - driver: new Earthstar.ReplicaDriverFs(address, "./data"), + driver: new Earthstar.ReplicaDriverFs(address, "./.share_data"), }); }, }),