https://github.com/bitspittle/kobweb-todo-on-render
A demo project for showing Kobweb running on a Render web service. See also: https://bitspittle.dev/blog/2023/clouddeploy
https://github.com/bitspittle/kobweb-todo-on-render
Last synced: 12 months ago
JSON representation
A demo project for showing Kobweb running on a Render web service. See also: https://bitspittle.dev/blog/2023/clouddeploy
- Host: GitHub
- URL: https://github.com/bitspittle/kobweb-todo-on-render
- Owner: bitspittle
- Created: 2023-05-07T19:01:39.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-12T21:37:56.000Z (about 1 year ago)
- Last Synced: 2025-04-12T22:30:41.272Z (about 1 year ago)
- Language: Kotlin
- Size: 97.7 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is a [Kobweb](https://github.com/varabyte/kobweb) project instantiated from the `examples/todo` template.
The purpose of this project is to showcase a minimal Todo app, demonstrating:
* a simple, reactive, single-page web app, making use of both Silk UI and Compose for Web
* API endpoints (e.g. for adding, removing, and fetching items)
* how to share types across client and server (see `TodoItem` which has text and an ID value)
I'd like to give credit to https://blog.upstash.com/nextjs-todo for sharing the Next.js version.
---
To run the sample, simply enter the following commands in the terminal:
```bash
$ cd site
$ kobweb run
```
and open [http://localhost:8080](http://localhost:8080) with your browser to see the result.