From 313a51f8db3d770f71b37dc2c19ab6a996bb3798 Mon Sep 17 00:00:00 2001 From: Mathis Date: Fri, 8 Nov 2024 14:37:06 +0100 Subject: [PATCH] Add various UI components including ToggleGroup and RadioGroup This commit introduces multiple new UI components for the project. The added components include ToggleGroup, RadioGroup, Pagination, ToastBox, Textarea, Breadcrumb, Skeleton, Collapsible, Checkbox, Calendar, Accordion, Sonner, and CopyButton. These components enhance the flexibility and functionality of the UI, providing essential elements for better user interaction. --- .env.example | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..8721a2c --- /dev/null +++ b/.env.example @@ -0,0 +1,14 @@ +PORT=3333 + +POSTGRES_HOST=127.0.0.1 +POSTGRES_PORT=5434 +POSTGRES_DATABASE= +POSTGRES_USER= +POSTGRES_PASSWORD= +DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DATABASE}?schema=public&connection_limit=1 + +SMTP_PASSWORD="" +SMTP_EMAIL="" +SMTP_HOST="" + +JWT_SECRET= \ No newline at end of file