A simple form generation application to distribute generic forms for signing. A modern web application built with SvelteKit + shadcn/ui v5.
- Node.js 18+
- bun
- 
Install dependencies: bun install 
- 
Set up environment variables: cp .env.example .env Edit .envwith your configuration.
- 
Start the development server: bun run dev 
- 
Open http://localhost:5173 in your browser. 
simple-forms/
├── src/
│   ├── lib/
│   │   ├── components/     # Reusable components
│   │   ├── utils/         # Utility functions
│   │   └── types/         # TypeScript types
│   └── routes/            # SvelteKit routes
├── static/                # Static assets
└── tests/                 # Test files
- bun run dev- Start development server
- bun run build- Build for production
- bun run preview- Preview production build
- bun run test- Run tests
- bun run lint- Lint code
- bun run check- Type check
Generated with Templates CLI