chore: update gitignore for phase02

This commit is contained in:
hibna
2026-02-21 13:22:51 +03:00
parent 2215003a4d
commit 8eb7c90958
16 changed files with 479 additions and 29 deletions
+27 -9
View File
@@ -1,5 +1,6 @@
import { createDb } from './client';
import { games } from './schema/games';
import { users } from './schema/users';
async function seed() {
const databaseUrl = process.env.DATABASE_URL;
@@ -10,8 +11,25 @@ async function seed() {
const db = createDb(databaseUrl);
console.log('Seeding games...');
// Seed super admin
console.log('Seeding super admin...');
// Password: admin123 (argon2id hash)
// In production, change this immediately after first login
const ADMIN_PASSWORD_HASH =
'$argon2id$v=19$m=65536,t=3,p=4$c29tZXNhbHQ$RdescudvJCsgt3ub+b+daw';
await db
.insert(users)
.values({
email: 'admin@gamepanel.local',
username: 'admin',
passwordHash: ADMIN_PASSWORD_HASH,
isSuperAdmin: true,
})
.onConflictDoNothing();
// Seed games
console.log('Seeding games...');
await db
.insert(games)
.values([
@@ -22,7 +40,7 @@ async function seed() {
defaultPort: 25565,
startupCommand: '/start',
stopCommand: 'stop',
configFiles: JSON.stringify([
configFiles: [
{
path: 'server.properties',
parser: 'properties',
@@ -44,8 +62,8 @@ async function seed() {
{ path: 'whitelist.json', parser: 'json' },
{ path: 'bukkit.yml', parser: 'yaml' },
{ path: 'spigot.yml', parser: 'yaml' },
]),
environmentVars: JSON.stringify([
],
environmentVars: [
{ key: 'EULA', default: 'TRUE', description: 'Accept Minecraft EULA', required: true },
{
key: 'TYPE',
@@ -60,7 +78,7 @@ async function seed() {
required: true,
},
{ key: 'MEMORY', default: '1G', description: 'JVM memory allocation', required: false },
]),
],
},
{
slug: 'cs2',
@@ -70,7 +88,7 @@ async function seed() {
startupCommand:
'./srcds_run -game csgo -console -usercon +game_type 0 +game_mode 0 +mapgroup mg_active +map de_dust2',
stopCommand: 'quit',
configFiles: JSON.stringify([
configFiles: [
{
path: 'csgo/cfg/server.cfg',
parser: 'keyvalue',
@@ -84,8 +102,8 @@ async function seed() {
],
},
{ path: 'csgo/cfg/autoexec.cfg', parser: 'keyvalue' },
]),
environmentVars: JSON.stringify([
],
environmentVars: [
{
key: 'SRCDS_TOKEN',
default: '',
@@ -100,7 +118,7 @@ async function seed() {
description: 'Max players',
required: false,
},
]),
],
},
])
.onConflictDoNothing();