This repository has been archived on 2022-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Midou36O 71844a0d12
ci/woodpecker/push/woodpecker Pipeline was successful Details
add the edit odyssey requested
2022-10-29 20:21:37 +01:00
.github as I thought 2022-10-18 15:38:35 +02:00
api easy merge conflic fix lmfao 2022-10-18 15:30:03 +02:00
config My changes 2022-10-18 15:26:47 +02:00
data add the edit odyssey requested 2022-10-29 20:21:37 +01:00
static Switch to tabs for everything. (Note: don't know if this will break the .yml files) 2022-10-18 15:37:38 +02:00
utils My changes 2022-10-18 15:26:47 +02:00
.editorconfig as I thought 2022-10-18 15:38:35 +02:00
.gitignore My changes 2022-10-18 15:26:47 +02:00
.woodpecker.yml Did I forget the image? Maybe I did. 2022-09-18 00:37:34 +01:00
Dockerfile My changes 2022-10-18 15:26:47 +02:00
LICENSE Update LICENSE 2022-09-12 19:16:24 +00:00
docker-compose.yml Initial docker compose file. MIght need work 2022-08-23 22:16:47 +02:00
docker.env add to docker.env 2022-08-04 21:20:21 +02:00
go.mod My changes 2022-10-18 15:26:47 +02:00
go.sum My changes 2022-10-18 15:26:47 +02:00
main.go Fix everything odyssey pointed out. 2022-09-18 17:44:37 +01:00
readme.md okay, Akissvart 2022-08-14 21:34:56 +02:00

readme.md

Segfautils

Web utilities for Project Segfault

What does it do?

For now it powers our contact form. In the future we will expand our APIs so you can do more cool things.

Setup

Docker:

docker run -d --restart=always -p 6893:6893 --name segfautils -v "$(pwd)"/data:/segfautils/data projectsegfault/segfautils:latest

You need to copy the config.example.toml to ```config.toml`` and customize the values in the config file. YAML works as well, if you'd like to use that instead.

We recommend using Docker as it provides better security (we suck in security, so that's why) and we are constantly updating Segfautils. Docker makes it easy to update the program.

If you're using Portainer, you should know how to add Segfautils.

git clone https://github.com/ProjectSegfault/segfautils
cd segfautils/
# You need to add the environment HCAPTCHA_SITE_KEY, HCAPTCHA_SECRET_KEY, SEGFAUTILS_WEBHOOK_URL and SEGFAUTILS_PORT.
go run main.go # Run this when you've done above, and you're planning on developing, if not, do below
go build . -o segfautils
./segfautils