{"id":38436407,"url":"https://github.com/tilalx/verti-grade","last_synced_at":"2026-05-28T22:00:27.176Z","repository":{"id":249174978,"uuid":"735536753","full_name":"tilalx/verti-grade","owner":"tilalx","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-24T17:30:36.000Z","size":64009,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-24T19:19:19.365Z","etag":null,"topics":["bouldering","ci","climbing-gym","grading","gym-management-system","route-management","route-management-tool","route-setting","self-hosted"],"latest_commit_sha":null,"homepage":"https://dav.aelx.de","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tilalx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-12-25T09:20:07.000Z","updated_at":"2026-05-24T17:30:33.000Z","dependencies_parsed_at":"2024-10-23T02:05:48.631Z","dependency_job_id":"3fef298c-757d-4220-aa72-57575ca7d267","html_url":"https://github.com/tilalx/verti-grade","commit_stats":null,"previous_names":["tilalx/verti-grade"],"tags_count":27,"template":false,"template_full_name":null,"purl":"pkg:github/tilalx/verti-grade","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tilalx%2Fverti-grade","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tilalx%2Fverti-grade/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tilalx%2Fverti-grade/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tilalx%2Fverti-grade/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tilalx","download_url":"https://codeload.github.com/tilalx/verti-grade/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tilalx%2Fverti-grade/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33627937,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-28T02:00:06.440Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bouldering","ci","climbing-gym","grading","gym-management-system","route-management","route-management-tool","route-setting","self-hosted"],"created_at":"2026-01-17T04:29:53.800Z","updated_at":"2026-05-28T22:00:27.157Z","avatar_url":"https://github.com/tilalx.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Verti-Grade\n\nA climbing route management system for gyms and outdoor venues.\n\n- [Setup Docker Compose](#setup-docker-compose)\n- [Getting Started](#getting-started)\n- [Custom TLS Certificate](#custom-tls-certificate)\n- [Usage](#usage)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Setup Docker Compose\n\n### Prerequisites\n\n- [Docker](https://docs.docker.com/get-docker/)\n- [Docker Compose](https://docs.docker.com/compose/install/)\n\n### Download Docker Compose File\n\n```sh\nwget https://raw.githubusercontent.com/tilalx/verti-grade/main/docker-compose.yml\n```\n\n### Docker Compose Configuration\n\n```yaml\nservices:\n  verti-grade:\n    container_name: verti-grade-app\n    image: tilalx/verti-grade:latest\n    ports:\n      - \"80:80\"\n      - \"443:443\"\n    environment:\n      # Default superuser created on first boot. Change before deploying!\n      PB_SUPERUSER_EMAIL: admin@example.com\n      PB_SUPERUSER_PASSWORD: changeme123\n    volumes:\n      - ./pb_data:/pb/pb_data\n```\n\n### Running the Project\n\n```sh\ndocker-compose up -d\n```\n\n## Getting Started\n\nAfter `docker-compose up -d` completes, follow these steps to get the application ready.\n\n### 1. Open the Application\n\nNavigate to **`https://localhost`** in your browser.\n\n\u003e The default setup uses a self-signed TLS certificate. Your browser will show a security warning — click \"Advanced\" → \"Proceed\" to continue. See [Custom TLS Certificate](#custom-tls-certificate) to use a real certificate.\n\n### 2. Log In as Superuser\n\nThe superuser account is created automatically on first boot using the credentials set in `docker-compose.yml`:\n\n| Field    | Default value         |\n|----------|-----------------------|\n| Email    | `admin@example.com`   |\n| Password | `changeme123`         |\n\n**Change these before deploying to production.**\n\nThe superuser account is used to access the PocketBase admin panel at `https://localhost/_/` — it is separate from regular user accounts.\n\n### 3. Create Your First User Account\n\nRegular user accounts must be created via the PocketBase admin panel:\n\n1. Open `https://localhost/_/` and log in with the superuser credentials\n2. Navigate to **Collections → users → New record**\n3. Fill in the email, password, and any other required fields\n4. Set **verified** to `true` so the user can log in immediately\n5. Save the record\n\nAfter that the user can log in at `https://localhost/auth/login`.\n\n### 4. Configure Application Settings\n\nGo to **Admin → Settings** in the Verti-Grade UI to configure:\n\n- Organisation name and logo\n- Privacy policy / imprint URL\n- Sign image for route cards\n\n### 5. Start Adding Routes\n\nOnce logged in as a regular user, use the dashboard to add and manage climbing routes.\n\n---\n\n## Custom TLS Certificate\n\nBy default, a self-signed certificate is generated automatically at startup. To use your own certificate (e.g. from Let's Encrypt), mount it into the container:\n\n```yaml\nvolumes:\n  - ./pb_data:/pb/pb_data\n  - ./ssl/cert.pem:/etc/nginx/ssl/cert.pem:ro\n  - ./ssl/key.pem:/etc/nginx/ssl/key.pem:ro\n```\n\n---\n\n## Stopping the Service\n\n```sh\ndocker-compose down\n```\n\nData is persisted in `./pb_data` and survives restarts.\n\n## Usage\n\nVerti-Grade is designed to be simple and straightforward. Once set up, manage and evaluate climbing routes through the web interface. For detailed usage instructions refer to the [documentation](https://github.com/tilalx/verti-grade/wiki).\n\n## Contributing\n\n1. Fork the repository.\n2. Create a new branch (`git checkout -b feature-branch`).\n3. Make your changes.\n4. Commit your changes (`git commit -am 'Add new feature'`).\n5. Push to the branch (`git push origin feature-branch`).\n6. Create a new Pull Request.\n\n## License\n\nVerti-Grade is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftilalx%2Fverti-grade","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftilalx%2Fverti-grade","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftilalx%2Fverti-grade/lists"}