A full stack application for restaurants.
Web Framework | Svelte Kit |
UI Library | Flowbite Svelte |
Frontend | Typescript with Sass |
Backend | Go |
Server | Go Fiber |
Database | bbolt |
cd frontend
npm install
npm run dev
cd backend
go run .
cd frontend
npm run build
npm run start
cd backend
go build -o breadstick .
./serve -t # Print the api token environment variable
PORT=4000 VITE_API_TOKEN=api_token ./breadstick
cd backend
cp ../sample.env ./.env # Edit api token in .env
docker build -t breadstick-app .
docker run -it -d -p 3000:3000 breadstick-app