tangled
alpha
login
or
join now
ptr.pet
/
bsky-repost-likes
2
fork
atom
its for when you want to get like notifications for your reposts
2
fork
atom
overview
issues
pulls
pipelines
refactor: app -> webapp
ptr.pet
9 months ago
ff5169de
d598e4b3
verified
This commit was signed with the committer's
known signature
.
ptr.pet
SSH Key Fingerprint:
SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw=
+1
-1
20 changed files
expand all
collapse all
unified
split
flake.nix
webapp
.gitignore
.helix
languages.toml
.prettierrc
README.md
eslint.config.js
index.html
package.json
package.nix
pnpm-lock.yaml
pnpm-workspace.yaml
shims.d.ts
src
ActivityItem.tsx
App.tsx
assets
favicon.ico
index.css
index.tsx
types.ts
tsconfig.json
vite.config.ts
app/.gitignore
webapp/.gitignore
reviewed
app/.helix/languages.toml
webapp/.helix/languages.toml
reviewed
app/.prettierrc
webapp/.prettierrc
reviewed
app/README.md
webapp/README.md
reviewed
app/eslint.config.js
webapp/eslint.config.js
reviewed
app/index.html
webapp/index.html
reviewed
app/package.json
webapp/package.json
reviewed
app/package.nix
webapp/package.nix
reviewed
app/pnpm-lock.yaml
webapp/pnpm-lock.yaml
reviewed
app/pnpm-workspace.yaml
webapp/pnpm-workspace.yaml
reviewed
app/shims.d.ts
webapp/shims.d.ts
reviewed
app/src/ActivityItem.tsx
webapp/src/ActivityItem.tsx
reviewed
app/src/App.tsx
webapp/src/App.tsx
reviewed
app/src/assets/favicon.ico
webapp/src/assets/favicon.ico
reviewed
app/src/index.css
webapp/src/index.css
reviewed
app/src/index.tsx
webapp/src/index.tsx
reviewed
app/src/types.ts
webapp/src/types.ts
reviewed
app/tsconfig.json
webapp/tsconfig.json
reviewed
app/vite.config.ts
webapp/vite.config.ts
reviewed
+1
-1
flake.nix
reviewed
···
9
9
systems = [ "x86_64-linux" ];
10
10
perSystem = { pkgs, ... }: {
11
11
packages.default = pkgs.callPackage ./server/package.nix {};
12
12
-
packages.monitor = pkgs.callPackage ./app/package.nix {};
12
12
+
packages.monitor = pkgs.callPackage ./webapp/package.nix {};
13
13
};
14
14
};
15
15
}