This is a project built with SvelteKit, a modern web development framework for building fast and robust web applications.
- Framework: SvelteKit
- Language: TypeScript
- Build Tool: Vite
- UI Components: daisyUI, Lucide Svelte
- Styling: Tailwind CSS
-
Clone the repository:
git clone <your-repository-url> cd <your-project-directory>
-
Install dependencies:
The project uses
npmpackages managed via Deno. These will be installed automatically when you run the development server.
To start the development server, run the following command:
deno run -A npm:viteThe application will be available at http://localhost:5173.
deno run -A npm:vite: Starts the development server.deno run -A npm:vite build: Builds the application for production.deno run -A npm:vite preview: Previews the production build locally.
.
├── src
│ ├── routes
│ │ ├── +layout.svelte
│ │ ├── +page.svelte
│ │ └── ... (other routes)
│ ├── app.css
│ ├── app.d.ts
│ └── app.html
├── static
│ └── favicon.svg
├── svelte.config.js
├── package.json
├── tsconfig.json
└── vite.config.ts