FLIN Documentation

Everything you need to build full-stack applications with FLIN — from your first app to production deployment.

Quick Cheatsheet

The most common FLIN patterns at a glance.

Variable
name = "FLIN"
Entity
entity Todo {
    title: text
    done: bool = false
}
Save
save todo
Query
Todo.where(done == false).order_by("title")
Template
{for todo in todos}
    <div>{todo.title}</div>
{/for}
Function
fn toggle(t: Todo) {
    t.done = !t.done
    save t
}
Session
theme = session.theme || "light"
i18n
{t("hello")}

Ready to Start Building?

Install FLIN and build your first app in under 5 minutes.

curl -fsSL https://flin.sh | bash