Skip to content

Commit 07c4254

Browse files
committed
feat: initial commit of progress on frontend + backend skeleton
0 parents  commit 07c4254

File tree

137 files changed

+16654
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+16654
-0
lines changed

.editorconfig

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
indent_style = tab
8+
indent_size = 2
9+
end_of_line = lf
10+
charset = utf-8
11+
trim_trailing_whitespace = true
12+
insert_final_newline = true
13+
14+
[*.{yml,yaml,md}]
15+
indent_style = space

.github/workflows/ci.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
env:
6+
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
7+
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
8+
9+
jobs:
10+
build-and-test:
11+
name: Build and test
12+
13+
runs-on: ubuntu-latest
14+
timeout-minutes: 5
15+
16+
steps:
17+
- name: Checkout Git repository
18+
uses: actions/checkout@v4
19+
- name: Setup Bun
20+
uses: oven-sh/setup-bun@v1
21+
with:
22+
bun-version: '1.0.25'
23+
- name: Install dependencies with Bun
24+
run: bun install --frozen-lockfile
25+
- name: Pull environment variables
26+
run: bun vercel env pull --environment development .env --token ${{ secrets.VERCEL_TOKEN }}
27+
- name: Cache Next.js
28+
uses: actions/cache@v4
29+
with:
30+
# See here for caching with `yarn` https://github.com/actions/cache/blob/main/examples.md#node---yarn or you can leverage caching with actions/setup-node https://github.com/actions/setup-node
31+
path: |
32+
~/.npm
33+
${{ github.workspace }}/apps/web/.next/cache
34+
# Generate a new cache whenever packages or source files change.
35+
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/bun.lockb') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}
36+
# If source files changed but packages didn't, rebuild from a prior cache.
37+
restore-keys: |
38+
${{ runner.os }}-nextjs-${{ hashFiles('**/bun.lockb') }}-
39+
- name: Build and test
40+
run: bun run test

.gitignore

+252
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,252 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/node,linux,macos,windows,visualstudiocode
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=node,linux,macos,windows,visualstudiocode
3+
4+
### Linux ###
5+
*~
6+
7+
# temporary files which can be created if a process still has a handle open of a deleted file
8+
.fuse_hidden*
9+
10+
# KDE directory preferences
11+
.directory
12+
13+
# Linux trash folder which might appear on any partition or disk
14+
.Trash-*
15+
16+
# .nfs files are created when an open file is removed but is still being accessed
17+
.nfs*
18+
19+
### macOS ###
20+
# General
21+
.DS_Store
22+
.AppleDouble
23+
.LSOverride
24+
25+
# Icon must end with two \r
26+
Icon
27+
28+
29+
# Thumbnails
30+
._*
31+
32+
# Files that might appear in the root of a volume
33+
.DocumentRevisions-V100
34+
.fseventsd
35+
.Spotlight-V100
36+
.TemporaryItems
37+
.Trashes
38+
.VolumeIcon.icns
39+
.com.apple.timemachine.donotpresent
40+
41+
# Directories potentially created on remote AFP share
42+
.AppleDB
43+
.AppleDesktop
44+
Network Trash Folder
45+
Temporary Items
46+
.apdisk
47+
48+
### Node ###
49+
# Logs
50+
logs
51+
*.log
52+
npm-debug.log*
53+
yarn-debug.log*
54+
yarn-error.log*
55+
lerna-debug.log*
56+
.pnpm-debug.log*
57+
58+
# Diagnostic reports (https://nodejs.org/api/report.html)
59+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
60+
61+
# Runtime data
62+
pids
63+
*.pid
64+
*.seed
65+
*.pid.lock
66+
67+
# Directory for instrumented libs generated by jscoverage/JSCover
68+
lib-cov
69+
70+
# Coverage directory used by tools like istanbul
71+
coverage
72+
*.lcov
73+
74+
# nyc test coverage
75+
.nyc_output
76+
77+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
78+
.grunt
79+
80+
# Bower dependency directory (https://bower.io/)
81+
bower_components
82+
83+
# node-waf configuration
84+
.lock-wscript
85+
86+
# Compiled binary addons (https://nodejs.org/api/addons.html)
87+
build/Release
88+
89+
# Dependency directories
90+
node_modules/
91+
jspm_packages/
92+
93+
# Snowpack dependency directory (https://snowpack.dev/)
94+
web_modules/
95+
96+
# TypeScript cache
97+
*.tsbuildinfo
98+
99+
# Optional npm cache directory
100+
.npm
101+
102+
# Optional eslint cache
103+
.eslintcache
104+
105+
# Optional stylelint cache
106+
.stylelintcache
107+
108+
# Microbundle cache
109+
.rpt2_cache/
110+
.rts2_cache_cjs/
111+
.rts2_cache_es/
112+
.rts2_cache_umd/
113+
114+
# Optional REPL history
115+
.node_repl_history
116+
117+
# Output of 'npm pack'
118+
*.tgz
119+
120+
# Yarn Integrity file
121+
.yarn-integrity
122+
123+
# dotenv environment variable files
124+
.env
125+
.env.development.local
126+
.env.test.local
127+
.env.production.local
128+
.env.local
129+
130+
# parcel-bundler cache (https://parceljs.org/)
131+
.cache
132+
.parcel-cache
133+
134+
# Next.js build output
135+
.next
136+
out
137+
138+
# Nuxt.js build / generate output
139+
.nuxt
140+
dist
141+
142+
# Gatsby files
143+
.cache/
144+
# Comment in the public line in if your project uses Gatsby and not Next.js
145+
# https://nextjs.org/blog/next-9-1#public-directory-support
146+
# public
147+
148+
# vuepress build output
149+
.vuepress/dist
150+
151+
# vuepress v2.x temp and cache directory
152+
.temp
153+
154+
# Docusaurus cache and generated files
155+
.docusaurus
156+
157+
# Serverless directories
158+
.serverless/
159+
160+
# FuseBox cache
161+
.fusebox/
162+
163+
# DynamoDB Local files
164+
.dynamodb/
165+
166+
# TernJS port file
167+
.tern-port
168+
169+
# Stores VSCode versions used for testing VSCode extensions
170+
.vscode-test
171+
172+
# yarn v2
173+
.yarn/cache
174+
.yarn/unplugged
175+
.yarn/build-state.yml
176+
.yarn/install-state.gz
177+
.pnp.*
178+
179+
### Node Patch ###
180+
# Serverless Webpack directories
181+
.webpack/
182+
183+
# Optional stylelint cache
184+
185+
# SvelteKit build / generate output
186+
.svelte-kit
187+
188+
### VisualStudioCode ###
189+
.vscode/*
190+
!.vscode/settings.json
191+
!.vscode/tasks.json
192+
!.vscode/launch.json
193+
!.vscode/extensions.json
194+
!.vscode/*.code-snippets
195+
196+
# Local History for Visual Studio Code
197+
.history/
198+
199+
# Built Visual Studio Code Extensions
200+
*.vsix
201+
202+
### VisualStudioCode Patch ###
203+
# Ignore all local history of files
204+
.history
205+
.ionide
206+
207+
# Support for Project snippet scope
208+
209+
### Windows ###
210+
# Windows thumbnail cache files
211+
Thumbs.db
212+
Thumbs.db:encryptable
213+
ehthumbs.db
214+
ehthumbs_vista.db
215+
216+
# Dump file
217+
*.stackdump
218+
219+
# Folder config file
220+
[Dd]esktop.ini
221+
222+
# Recycle Bin used on file shares
223+
$RECYCLE.BIN/
224+
225+
# Windows Installer files
226+
*.cab
227+
*.msi
228+
*.msix
229+
*.msm
230+
*.msp
231+
232+
# Windows shortcuts
233+
*.lnk
234+
235+
# End of https://www.toptal.com/developers/gitignore/api/node,linux,macos,windows,visualstudiocode
236+
237+
# Dotenv files
238+
*.env
239+
!*example.env
240+
241+
# Google Cloud Service account
242+
service-account-key.json
243+
244+
# Turbo
245+
.turbo
246+
247+
# Vercel
248+
.vercel
249+
.env*.local
250+
251+
# My local design files
252+
designs.tldr

0 commit comments

Comments
 (0)