-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
willianpm edited this page Mar 14, 2026
·
1 revision
- Node.js 22 or later
- npm
- Discord bot credentials (TOKEN and CLIENT_ID)
- Clone repository.
- Install dependencies.
git clone https://github.com/willianpm/LittleBoatPoll.git
cd LittleBoatPoll
npm installCreate .env from .env.example and provide required values:
TOKEN=your_discord_bot_token
CLIENT_ID=your_discord_application_id
APP_ENV=prod
DEPLOY=true
DEBUG=false
PORT=8000For staging mode, use .env.staging and set APP_ENV=staging.
npm start # start bot (prod by default)
npm run start:staging # start bot in staging
npm run deploy # register slash/context commands
npm run deploy:staging # register commands in staging modenpm test
npm run lint