/teio.moe

Source code of the blazingly fast https://teio.moe/ website

Primary LanguageRust

Teio.moe

Very much inspired by tannhauser.moe. It's just that I prefer Tokai Teio. So I rewrote it in Rust because then I could combine two things I really like!

This project was made using Leptos and TailwindCSS.

The code of the gallery is copied from tannhauser.moe repository with permission.

How to run website locally for development

Pre-requisites:

TailwindCSS command to update styles on hot reload when developing

$ npx tailwindcss -i style/input.css -o src/styles/output.css --watch

Run the development server

$ cargo leptos watch

Access the website at http://localhost:4200/

Creating the docker image and running it

Build the docker image:

$ docker build . -t teiomoe

Run the docker image:

$ docker run -p 4200:4200 teiomoe