unoffical wafrn mirror
wafrn.net
atproto
social-network
activitypub
1{
2 pkgs ? import <nixpkgs> { },
3}:
4
5pkgs.mkShell {
6 buildInputs = with pkgs; [ nodejs_24 jq ];
7 shellHook = ''
8 echo "running npm install..."
9 npm install .
10 echo -e "\r\nUse \`npm run frontend:develop:prod\` to start the development server, make sure to clear your cache if you run a switch servers!"
11 '';
12}