v/examples/xvweb/todo
2024-01-25 21:46:12 +02:00
..
assets examples: add TODO app example with x.vweb (#20175) 2023-12-14 20:20:16 +02:00
templates examples: add TODO app example with x.vweb (#20175) 2023-12-14 20:20:16 +02:00
.gitignore examples: add TODO app example with x.vweb (#20175) 2023-12-14 20:20:16 +02:00
main.v examples: allow for ./v run examples/xvweb/todo, without needing to first change the current folder to examples/xvweb/ 2024-01-25 21:46:12 +02:00
README.md examples: add TODO app example with x.vweb (#20175) 2023-12-14 20:20:16 +02: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`