fix minor docs and add output to gitignore

This commit is contained in:
rizary 2025-06-23 10:49:37 +07:00
parent 6bb780e1e5
commit eb148541e6
Signed by untrusted user who does not match committer: rizary
GPG key ID: 2CE8D69D02F1CEB5
3 changed files with 4 additions and 2 deletions

3
.gitignore vendored
View file

@ -90,6 +90,9 @@ typings/
# Electron-Forge
out/
dist/
.output/
.cursor/

View file

@ -228,7 +228,7 @@ netstat -tulpn | grep :3000
### Production Build Process
1. **Environment**: Automatically uses production Redis server (`154.38.185.112:6379`)
2. **Build**: `pnpm run build:prod`
2. **Build**: `pnpm run build`
3. **Output**: Electron distributables in `out/` directory
### Production Checklist

View file

@ -12,7 +12,6 @@
"dev:electron": "cross-env NODE_ENV=development electron-forge start",
"build": "cross-env NODE_ENV=production nuxt generate --config-file .config/nuxt.ts && cross-env NODE_ENV=production electron-forge make",
"build:dev": "cross-env NODE_ENV=development nuxt generate --config-file .config/nuxt.ts && cross-env NODE_ENV=development electron-forge make",
"build:prod": "cross-env NODE_ENV=production nuxt generate --config-file .config/nuxt.ts && cross-env NODE_ENV=production electron-forge make",
"package": "cross-env NODE_ENV=production electron-forge package",
"package:dev": "cross-env NODE_ENV=development electron-forge package",
"make": "electron-forge make",