Skip to content

Commit

Permalink
Remove dump.rdb from version control
Browse files Browse the repository at this point in the history
  • Loading branch information
KnightRadiant44 committed Aug 4, 2024
1 parent a5552d3 commit ab6ddac
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,5 @@ next-env.d.ts
# SQLite dev database
*.db
*.sqlite

dump.rdb
Binary file added dump.rdb
Binary file not shown.
7 changes: 4 additions & 3 deletions src/constants/colours.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,20 @@ export const BORDER_COLOURS = {
purple: 'border-purple border-2',
} as const satisfies Record<Colour, string>;

// the list below is sorted in alphabetical order by tech stack name
export const TECH_COLORS = {
'Discord.py': '#7387CE',
FastAPI: '#F6BF00',
NextUI: '#A8DADC',
'Next.js': '#B17CA6',
'Pragmatic Drag & Drop': '#FF6F61',
Python: '#64B550',
React: '#ED8C9B',
Requests: '#FFD166',
Supabase: '#5DBBB5',
'Tailwind CSS': '#907FC3',
TypeScript: '#ACCB00',
Requests: '#FFD166',
Vite: '#646464',
'Pragmatic Drag & Drop': '#FF6F61',
NextUI: '#A8DADC',
} as const satisfies Record<TechStack, string>;

/**
Expand Down
17 changes: 9 additions & 8 deletions src/constants/tech-stack.ts
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];

0 comments on commit ab6ddac

Please sign in to comment.