https://github.com/cmdada/newsite
code for my personal/art site https://adabit.org
https://github.com/cmdada/newsite
Last synced: about 1 year ago
JSON representation
code for my personal/art site https://adabit.org
- Host: GitHub
- URL: https://github.com/cmdada/newsite
- Owner: cmdada
- Created: 2024-07-16T21:01:43.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-18T20:26:15.000Z (about 1 year ago)
- Last Synced: 2025-02-18T21:31:42.024Z (about 1 year ago)
- Language: Svelte
- Homepage: https://adabit.org
- Size: 46.3 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# adabit.org
## Building instructions
We use pnpm and sveltekit here, so it's a simple `pnpm build`. `node build`
oh and i wrote a shitty systemd service file that doesnt restart correctly, so assuming you cloned the repo to /home/ada/newsite/ here you go
```
[Unit]
Description=adabit
After=multi-user.target
[Service]
Type=simple
ExecStart=bash -c "cd /home/ada/newsite&& npm run build && PROTOCOL_HEADER=x-forwarded-proto HOST_HEADER=x-forwarded-host node build"
Restart=on-failure
RestartSec=5s
[Install]
WantedBy=multi-user.target
```