The best way to share your tunes and logs.
This is the backend for the HyperTuner Cloud. It's based on PocketBase.
- the source code of the HyperTuner Cloud backend that extends PocketBase.
- database schema
- configurations
- deployment scripts / Docker and docker compose files
- migration scripts and guides
Use provider Docker image or just grab the binary from the Releases page.
./cloud-backend serve
This will create pb_data
directory where all the data will be stored (SQLite, uploaded files and metadata).
Now you can access the admin UI at: https://your-instance.com/_/.
https://hub.docker.com/r/karniv001/hypertuner-cloud-backend
docker pull karniv001/hypertuner-cloud-backend:1.3.6
Warning Some versions will contain breaking changes!
If you are upgrading from a previous version, please read the UPGRADE.md file.
Located in admin UI: Settings -> Application
.
Application name
- the name of your applicationApplication URL
- the URL of your frontend application
Located in the admin UI: Settings -> Mailer settings
.
- Verification email ACTION URL:
{APP_URL}/#/auth/email-verification/{TOKEN}
- Password reset ACTION URL:
{APP_URL}/#/auth/reset-password-confirmation/{TOKEN}
For every OAuth2 provider, you need to set the following redirect URLs:
https://{FRONTEND-URL}/?redirect=oauth&provider=google
https://{FRONTEND-URL}/?redirect=oauth&provider=github
https://{FRONTEND-URL}/?redirect=oauth&provider=facebook
Copy/load pb_schema.json
to Settings -> Sync -> Import collections
in the admin UI.
You can use the /api/health
endpoint to check if the application is up and running.
go build