Skip to content

Commit

Permalink
Merge pull request #1 from coji/chore/monorepo
Browse files Browse the repository at this point in the history
chore: monorepo
  • Loading branch information
coji authored Jan 20, 2024
2 parents ea9e439 + cdc309a commit 6fc6dea
Show file tree
Hide file tree
Showing 67 changed files with 10,892 additions and 193 deletions.
3 changes: 3 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
VITE_GOOGLE_CLIENT_ID=555137498198-910lfdq60rjkclt8hbut5bhe0esfv4vn.apps.googleusercontent.com


1 change: 1 addition & 0 deletions .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- run: pnpm i && pnpm build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
entryPoint: apps/front
repoToken: '${{ secrets.GITHUB_TOKEN }}'
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_REMIX_SPA_EXAMPLE }}'
channelId: live
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- run: pnpm i && pnpm build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
entryPoint: apps/front
repoToken: '${{ secrets.GITHUB_TOKEN }}'
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_REMIX_SPA_EXAMPLE }}'
projectId: remix-spa-example
10 changes: 1 addition & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,2 @@
node_modules

/.cache
/build
/public/build
.env
*-debug.log
.firebase
data
stats.html
.turbo
File renamed without changes.
File renamed without changes.
9 changes: 9 additions & 0 deletions apps/front/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
node_modules

/.cache
/build
/public/build
.env
*-debug.log
.firebase
stats.html
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
63 changes: 63 additions & 0 deletions apps/front/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{
"name": "@remix-spa-example/front",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"lint": "biome lint .",
"format": "biome format .",
"typecheck": "tsc",
"validate": "pnpm run lint && pnpm run format && pnpm run typecheck",
"start": "http-server -p 3000 build/client/"
},
"dependencies": {
"@conform-to/react": "^0.9.1",
"@conform-to/zod": "^0.9.1",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@remix-run/node": "^2.5.0",
"@remix-run/react": "^2.5.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"firebase": "^10.7.1",
"lucide-react": "^0.309.0",
"pure-uuid": "^1.8.1",
"react": "18.3.0-canary-60a927d04-20240113",
"react-dom": "18.3.0-canary-60a927d04-20240113",
"react-twc": "^1.3.0",
"remix-flat-routes": "^0.6.4",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "^1.5.2",
"@mdx-js/rollup": "^3.0.0",
"@remix-run/dev": "^2.5.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"firebase-tools": "^13.0.3",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.33",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^4.0.0",
"rollup-plugin-visualizer": "^5.12.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vite-tsconfig-paths": "^4.2.3"
},
"engines": {
"node": ">=18.0.0"
}
}
Loading

0 comments on commit 6fc6dea

Please sign in to comment.