-
-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🌳 feat(app): add many new store things
- Loading branch information
Showing
202 changed files
with
14,019 additions
and
2,252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,6 +92,12 @@ RESEND_API_KEY="" | |
# ?? [19] [email protected] | ||
EMAIL_FROM_ADDRESS="" | ||
|
||
# !! LOGLIB (https://loglib.io) | ||
# ?? ***_*** | ||
LOGLIB_SITE_ID="" | ||
# ?? site_*** | ||
LOGLIB_API_KEY="" | ||
|
||
# !! UNSORTED ENV VARS | ||
|
||
# ?? [20] | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Code check | ||
|
||
on: | ||
pull_request: | ||
branches: ["*"] | ||
|
||
env: | ||
NEXT_PUBLIC_APP_URL: "https://fake.com" | ||
DATABASE_URL: "fake" | ||
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: "fake" | ||
CLERK_SECRET_KEY: "fake" | ||
RESEND_API_KEY: "fake" | ||
EMAIL_FROM_ADDRESS: "[email protected]" | ||
UPLOADTHING_SECRET: "fake" | ||
UPLOADTHING_APP_ID: "fake" | ||
STRIPE_API_KEY: "fake" | ||
STRIPE_WEBHOOK_SECRET: "fake" | ||
STRIPE_STD_MONTHLY_PRICE_ID: "fake" | ||
STRIPE_PRO_MONTHLY_PRICE_ID: "fake" | ||
|
||
jobs: | ||
typecheck-lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Node 18 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Setup pnpm | ||
uses: pnpm/[email protected] | ||
with: | ||
version: 8.6.1 | ||
|
||
- name: Get pnpm store directory | ||
id: pnpm-cache | ||
run: | | ||
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT | ||
- name: Setup pnpm cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
- name: Install deps (with cache) | ||
run: pnpm install | ||
|
||
- name: Run lint | ||
run: pnpm run lint | ||
|
||
- name: Run typecheck | ||
run: pnpm run typecheck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.