-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: infrastructure almost done, still need to setup the API proper…
…ly and intergrate. Split the backend, one local and one open source
- Loading branch information
1 parent
355a18a
commit 3072902
Showing
12 changed files
with
102 additions
and
51 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
**/*.json | ||
**/*.js | ||
**/*.css | ||
**/*.html | ||
**/*.htm | ||
**/*.xml | ||
**/*.txt | ||
**/*.md | ||
**/*.markdown | ||
**/*.yml | ||
**/*.yaml | ||
**/*.csv | ||
**/*.tsv | ||
**/*.ini | ||
**/*.conf | ||
**/*.config | ||
**/*.properties | ||
**/*.toml | ||
**/*.lock | ||
**/*.log | ||
**/*.sql | ||
**/*.db | ||
**/*.sqlite | ||
**/*.sqlite3 | ||
**/*.sqlite2 | ||
**/*.sqlite-journal | ||
**/*.sqlite3-journal | ||
**/*.sqlite2-journal | ||
**/*.sqlite-shm | ||
**/*.sqlite3-shm | ||
**/*.sqlite2-shm | ||
**/*.sqlite-wal | ||
**/*.sqlite3-wal | ||
**/*.sqlite2-wal | ||
**/*.sqlite-wal-journal | ||
**/*.sqlite3-wal-journal | ||
**/*.sqlite2-wal-journal | ||
**/*.sqlite-wal-shm | ||
**/*.sqlite3-wal-shm |
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 |
---|---|---|
|
@@ -27,4 +27,5 @@ dist-ssr | |
dev-dist/ | ||
|
||
.env | ||
.env.local | ||
.env.local | ||
reminders.txt |
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,10 @@ | ||
{ | ||
"trailingComma": "all", | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"printWidth": 120, | ||
"proseWrap": "preserve", | ||
"useTabs": false, | ||
"bracketSpacing": true, | ||
"arrowParens": "always" | ||
} |
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
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,3 @@ | ||
import { ThemeProvider } from "@/components/providers/theme/theme-provider"; | ||
import { Events } from '@/components/providers/events/Events' | ||
export { ThemeProvider, Events } |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +0,0 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
@layer base {} | ||
|
||
@layer base { | ||
* { | ||
@apply border-border; | ||
} | ||
body { | ||
@apply bg-background text-foreground; | ||
} | ||
} | ||
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