From 36e2d11f2e823329c79263bfeb23ecb212581d31 Mon Sep 17 00:00:00 2001 From: starifiedmc Date: Tue, 21 Apr 2026 21:49:18 -0400 Subject: [PATCH] first commit --- README.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..e1c87ba --- /dev/null +++ b/README.md @@ -0,0 +1,34 @@ +# EaglerTiers Local Setup + +## Quick Start (Windows) + +1. Open PowerShell in the project root `eaglertiers`. +2. Run: + +```powershell +./run-local.ps1 +``` + +This script will: +- start a local MariaDB instance if needed, +- seed sample players, +- start the API + static frontend at `http://localhost:3000`. + +## Manual Commands + +```bash +npm install +npm run seed +npm start +``` + +Discord bot (separate terminal): + +```bash +npm run bot +``` + +## Notes + +- `.env` already includes default local DB settings. +- Update `DISCORD_BOT_TOKEN` in `.env` before running the bot.