mirror of
https://github.com/vlang/v.git
synced 2025-09-15 07:22:27 +03:00
19 lines
No EOL
425 B
Markdown
19 lines
No EOL
425 B
Markdown
# 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
|
|
```bash
|
|
v run main.v
|
|
```
|
|
You can also enable vweb's livereload feature with
|
|
```bash
|
|
v watch -d vweb_livereload run main.v`
|
|
``` |