Get Started
Frizzante is an opinionated web server framework written in Go that uses Svelte to render web pages.

1
Install frizzante.
go install github.com/razshare/frizzante/v2@latest
Note
Remember to add Go binaries to your path.
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
2
Create project.
frizzante create my_project
3
Configure project.
frizzante configure
4
Migrate development.
frizzante migrate
5
Start development.
frizzante dev
6
Build production.
frizzante build
This will create two executables, .gen/bin/migrate and .gen/bin/start .
7
Migrate production.
.gen/bin/migrate
8
Start application.
.gen/bin/start
Note
.gen/bin/start is a standalone binary, it contains all html, css and javascript bundles.