Note
Real documentation is coming soon, I promise ™️
In the meantime here is a quick start...
# Install Docker
curl https://get.docker.com | sh
# Install Golang (or goto https://go.dev/doc/install)
wget https://go.dev/dl/go1.23.1.linux-amd64.tar.gz
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.23.1.linux-amd64.tar.gz
export PATH=$PATH:/usr/local/go/bin
git clone https://github.com/Scorify/Scorify.git
cd Scorify
Note
For domain if you want do not want to use ACME certificate you can:
- Use your IP to use self-signed certificates
- Use
localhostto usehttp
go run main.go setup
docker compose up -d
You can now visit the Scorify webapp at the domain/ip you provided during the setup script
Note
Default Credentials are admin:admin
git pull
docker compose build
docker compose down
docker compose up -d