tangled
alpha
login
or
join now
tranquil.farm
/
tranquil-pds
146
fork
atom
Our Personal Data Server from scratch!
tranquil.farm
oauth
atproto
pds
rust
postgresql
objectstorage
fun
146
fork
atom
overview
issues
18
pulls
2
pipelines
fix: nix pds build
nel.pet
1 month ago
37ea41eb
2b31a288
verified
This commit was signed with the committer's
known signature
.
nel.pet
SSH Key Fingerprint:
SHA256:Zd+mWw4EweOfjYKNMYyVtMSN7oj+SBabmubG4RThVEI=
+3
-4
2 changed files
expand all
collapse all
unified
split
.gitignore
default.nix
+1
-1
.gitignore
reviewed
···
1
1
/target
2
2
.env
3
3
.direnv
4
4
-
.result
4
4
+
result
5
5
reference-pds-bsky/
6
6
reference-relay-indigo/
7
7
pds-moover/
+2
-3
default.nix
reviewed
···
4
4
pkg-config,
5
5
openssl,
6
6
}: let
7
7
-
toml = (lib.importTOML ./Cargo.toml).package;
7
7
+
toml = (lib.importTOML ./Cargo.toml).workspace.package;
8
8
in rustPlatform.buildRustPackage {
9
9
pname = "tranquil-pds";
10
10
inherit (toml) version;
···
15
15
lib.fileset.unions [
16
16
./Cargo.toml
17
17
./Cargo.lock
18
18
-
./src
18
18
+
./crates
19
19
./.sqlx
20
20
./migrations
21
21
-
./frontend
22
21
]
23
22
);
24
23
};