Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @amgvu
15 changes: 15 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
**Why**

<!-- Explain why this change is necessary and why it was completed -->

---

**What**

<!-- State what changes are included in this pull request -->

---

**Verification**

<!-- Describe how others can test and verify this feature -->
30 changes: 30 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [19, 20, 21]

steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Setup Node 🎯
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- name: Install dependencies 💿
run: npm ci

- name: Run linter ⚡
run: npm run lint

- name: Run build 🔨
run: npm run build
6 changes: 0 additions & 6 deletions src/lib/supabase.ts

This file was deleted.

Empty file.
11 changes: 11 additions & 0 deletions template.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_KEY=
NEXT_PUBLIC_BOT_API_URL=
NEXTAUTH_SECRET=
NEXTAUTH_ID=
NEXTAUTH_URL=
DISCORD_TOKEN=
DISCORD_CLIENT_ID=
DISCORD_GUILD_ID=
DISCORD_CLIENT_SECRET=
NEXT_PUBLIC_GEMINI_API_KEY=
Loading