An express management system
git clone https://github.com/domohai/boltz.git
- Node.js v18.18.0 or later
- MySQL installed in local
Run this command to install all the packages required
npm install
# Database Configuration
DATABASE_HOST=<your_db_host>
DATABASE_USER=<your_db_user>
DATABASE_PASSWORD=<your_db_password>
DATABASE_NAME=<your_db_name>
# NextAuth Configuration
NEXTAUTH_URL=<http://localhost:3000> or <your_dns_if_on_production>
NEXTAUTH_SECRET=<your_secret_keys>
NEXTAUTH_DEBUG=<true or false>
# Other Configurations
Start developing
npm run dev