Modern web application built with Svelte, Astro, and TailwindCSS.
src/ āāā assets/ # Static assets āāā components/ # UI components ā āāā ui/ # shadcn components ā āāā common/ # Shared components ā āāā features/ # Feature-specific components āāā config/ # App configuration āāā hooks/ # Custom hooks ā āāā queries/ # TanStack Query hooks āāā layouts/ # Page layouts āāā lib/ ā āāā api/ # API configuration ā āāā utils/ # Utility functions ā āāā types/ # TypeScript types āāā pages/ # Astro pages āāā services/ # API services āāā styles/ # Global styles
Copy .env.example
to .env
:
bash cp .env.example .env
Required environment variables:
PUBLIC_APP_NAME
: Application namePUBLIC_API_URL
: Backend API URLPUBLIC_APP_ENV
: Environment (development/staging/production)See .env.example
for all available options.
Install dependencies npm install Start development server npm run dev Build for production npm run build Preview production build npm run preview
svelte
Services follow a repository pattern with TypeScript interfaces:
typescript
interface IUserService {
getUsers(): Promise<User[]>;
getUserById(id: string): Promise
Environment variables are type-safe and validated with Zod. See src/config/index.ts
.
The build output will be in the dist/
directory.
git checkout -b feature/amazing-feature
)git commit -m 'Add amazing feature'
)git push origin feature/amazing-feature
)This project is licensed under the MIT License - see the LICENSE file for details.