a mini social media app for small communities

whoops. typo. also add a systemd service file

Changed files
+13 -1
src
webapp
+12
beep.service
··· 1 + [Unit] 2 + Description=beep server 3 + After=network.target 4 + 5 + [Service] 6 + ExecStart=/usr/local/bin/v run . config.real.maple 7 + Restart=always 8 + User=beep 9 + WorkingDirectory=/home/beep/beep 10 + 11 + [Install] 12 + WantedBy=multi-user.target
+1 -1
src/webapp/api.v
··· 25 25 if app.config.hcaptcha.enabled { 26 26 token := ctx.form['h-captcha-response'] 27 27 response := http.post('https://api.hcaptcha.com/siteverify', '{ 28 - "secret": "${app.config.hcaptcha.site_key}", 28 + "secret": "${app.config.hcaptcha.secret}", 29 29 "remoteip": "${ctx.ip()}", 30 30 "response": "${token}" 31 31 }') or {