
A full-stack, self-contained demo app with Svelte, Golang and SQLite
This is a Full-Stack, Self-Contained Shopping Demo App built using Svelte, Golang, and SQLite. It is a small and modern monolithic application that allows users to browse and add products to a shopping cart, view and checkout orders, and see order results. The backend of the app uses Golang and SQLite to create RESTful-like APIs for querying product data and writing order data. The project also includes a Dockerfile for containerization and supports DevContainer/CodeSpace for development.
The Full-Stack, Self-Contained Shopping Demo App is a small and modern monolithic application built using Svelte, Golang, and SQLite. It allows users to browse and add products to a shopping cart, view and checkout orders, and see order results. The app utilizes SvelteKit for static site generation and creating backend APIs. While not intended as a practical template for real-world applications, this project serves as an experiment to build a self-contained full-stack application.

Svelte is a modern front-end framework that compiles your code at build time, resulting in smaller and faster applications. It uses a reactive approach to update the DOM, allowing for high performance and a smoother user experience.
Vite is a build tool that aims to provide a faster and leaner development experience for modern web projects
Bootstrap is the most popular CSS Framework for developing responsive and mobile-first websites.
A fullstack boilerplate provides a starter application that includes both frontend and backend. It should include database, auth, payments, user roles and other backend services to build a fully featured saas or webapps.
A website that uses Docker for containerization to streamline development, testing, and deployment workflows. This includes features such as containerization of dependencies, automated builds and deployments, and container orchestration to ensure scalability and availability.
TypeScript is a superset of JavaScript, providing optional static typing, classes, interfaces, and other features that help developers write more maintainable and scalable code. TypeScript's static typing system can catch errors at compile-time, making it easier to build and maintain large applications.