-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove dump.rdb from version control
- Loading branch information
1 parent
a5552d3
commit ab6ddac
Showing
4 changed files
with
15 additions
and
11 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 |
---|---|---|
|
@@ -39,3 +39,5 @@ next-env.d.ts | |
# SQLite dev database | ||
*.db | ||
*.sqlite | ||
|
||
dump.rdb |
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,15 +1,16 @@ | ||
// the list below is sorted in alphabetical order by tech stack name | ||
export const TECH_STACK = [ | ||
'Python', | ||
'Discord.py', | ||
'FastAPI', | ||
'TypeScript', | ||
'React', | ||
'Next.js', | ||
'Tailwind CSS', | ||
'Supabase', | ||
'Discord.py', | ||
'NextUI', | ||
'Pragmatic Drag & Drop', | ||
'Python', | ||
'React', | ||
'Requests', | ||
'Supabase', | ||
'Tailwind CSS', | ||
'TypeScript', | ||
'Vite', | ||
'Pragmatic Drag & Drop', | ||
'NextUI', | ||
] as const; | ||
export type TechStack = (typeof TECH_STACK)[number]; |