Skip to content
Merged

bump #20

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,9 @@ CAP_SECRET=change_me
# Session & Cookie
COOKIE_SECRET=change_me_to_a_random_string

# Resend (email)
RESEND_API_KEY=re_xxxxxxxxx
RESEND_FROM_EMAIL=noreply@your-domain.com

# Logging
LOG_LEVEL=info
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

Game server management dashboard for the ZeroHost platform. Provides user-facing server lifecycle management (creation, renewal, suspension, deletion) backed by a panel API.

[![ZeroHost](https://img.zero-host.org/assets/github.png)](https://github.com/ZeroHost-Code/legal/blob/main/zhsl.md)
<img width="1920" height="1080" alt="image" src="https://github.com/user-attachments/assets/403b7c93-1121-4f4c-b407-ed1235b73218" />

<img width="1920" height="1080" alt="image" src="https://github.com/user-attachments/assets/3bf1a711-9923-4089-8a12-94bbc134c41b" />
[![ZeroHost](https://img.zero-host.org/assets/github.png)](https://github.com/ZeroHost-Code/legal/blob/main/zhsl.md)

---

Expand Down Expand Up @@ -555,3 +555,8 @@ Two deployment workflows are configured:
- **deploy-main.yml**: Triggered on push to `main` branch.

Both use SSH credentials configured as GitHub repository secrets (`SSH_HOST`, `SSH_USER`, `SSH_PASSWORD`, `SSH_PORT`).

---

## GitHub Stats
![Alt](https://repobeats.axiom.co/api/embed/2f957f930d36f4a2913f8aeb07712cedbd4b38c5.svg "Repobeats analytics image")
3 changes: 3 additions & 0 deletions config/migrate.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ const tables = {
{ name: 'token_version', def: 'INT NOT NULL DEFAULT 0' },
{ name: 'avatar', def: 'VARCHAR(255) DEFAULT NULL' },
{ name: 'ptero_client_api_key', def: 'VARCHAR(255) DEFAULT NULL' },
{ name: 'email_verified', def: 'TINYINT(1) NOT NULL DEFAULT 0' },
{ name: 'verification_token', def: 'VARCHAR(64) DEFAULT NULL' },
{ name: 'verification_token_expires', def: 'DATETIME DEFAULT NULL' },
{ name: 'created_at', def: 'TIMESTAMP DEFAULT CURRENT_TIMESTAMP' },
],
},
Expand Down
Loading