MiniWeb Template
Go to file
2023-10-04 00:46:44 +02:00
src started howto module to provide basic examples and explore possibilities 2023-10-04 00:46:44 +02:00
static started howto module to provide basic examples and explore possibilities 2023-10-04 00:46:44 +02:00
templates started howto module to provide basic examples and explore possibilities 2023-10-04 00:46:44 +02:00
.gitignore BATMAN 🦇 2023-10-03 21:59:30 +02:00
Cargo.lock BATMAN 🦇 2023-10-03 21:59:30 +02:00
Cargo.toml BATMAN 🦇 2023-10-03 21:59:30 +02:00
README.md BATMAN 🦇 2023-10-03 21:59:30 +02:00

MiniWeb

Abstract

This is a biased little project, that tries to establish a basic infrastructure to build a webservice.

The main objective is to build a basic template one can quickly start developing a service with

The project aims to implement approaches as simple straight-forward over generalized multi-purpose.

It assumes that you clone the code, and adjust it from there, without keeping up to date. So this is not thought of being a framework.

Choices

On the Backend

  • axum as webserver framework
  • minijinja as template renderer
  • diesel as database framework
  • rust_embed to embed vital static files

On the Frontend

  • markdown.css to provide out of the box CSS for markdown
  • hyperscript for light weight event scripting
  • htmx for service interaction
  • GUIKit for a default CSS framework

Features

The aims of the project for now are:

  • Template Rendering with Hot-Reload
  • Static-File Serving
  • 404 Handler
  • 500 Handler
  • Media File Serving

Future Ideas:

  • Direct Markdown Sites with wikiserve
  • static-image and media-image Service for automatic thumbnails
  • Small Admin Layer
  • User and Role Implementation
  • Event-Bus link to RabbitMQ
  • Logging