- Remove MariaDB helper, schema, and initialization script - Remove mysql2 dependency from package.json - Update reset-admin.js to use SQLite DatabaseHelper - Simplify .env.example to remove MariaDB configuration - Update start-service.sh to use SQLite initialization - Clean up all MariaDB references across codebase 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
239 B
Plaintext
13 lines
239 B
Plaintext
# 개발 환경 설정 예시
|
|
# SQLite 데이터베이스 사용 (설정 불필요)
|
|
|
|
# NAS 배포 환경
|
|
NODE_ENV=development
|
|
DEPLOY_ENV=local
|
|
|
|
# 서버 설정
|
|
HOST=0.0.0.0
|
|
PORT=3000
|
|
|
|
# 세션 설정
|
|
SESSION_SECRET=your-session-secret-here |