v/examples/veb/todo
2024-08-18 17:27:08 +03:00
..
assets veb: deprecate x.vweb in favor of veb; checker: show missing variants in the sumtype error 2024-08-18 17:27:08 +03:00
templates veb: deprecate x.vweb in favor of veb; checker: show missing variants in the sumtype error 2024-08-18 17:27:08 +03:00
.gitignore veb: deprecate x.vweb in favor of veb; checker: show missing variants in the sumtype error 2024-08-18 17:27:08 +03:00
main.v veb: deprecate x.vweb in favor of veb; checker: show missing variants in the sumtype error 2024-08-18 17:27:08 +03:00
README.md veb: deprecate x.vweb in favor of veb; checker: show missing variants in the sumtype error 2024-08-18 17:27:08 +03:00

A simple TODO app using x.vweb

A simple TODO app using x.vweb showcasing how to build a basic web app with vweb.

Database

This example uses an sqlite database using the db.sqlite package, but you can use any database from the db module.

Quick Start

Run from this directory with

v run main.v

You can also enable vweb's livereload feature with

v watch -d vweb_livereload run main.v`