Turbo.HTML

Table of contents

Getting started

Turbo.HTML is a Turbo.Ecto at Phoenix framework supported.

def deps do
[
{:turbo_html, "~> 0.2.1"}
]
end

For use with Phoenix.HTML, configure the config/config.exs like the following:

config :turbo_html, Turbo.HTML,
view_style: :semantic # default bootstrap.

Two methods are provided:

Demo

The dummy app shows a simple turbo_ecto example.

Clone the repository.

https://github.com/zven21/turbo_ecto.git

Change directory

$ cd dummy

Run mix

$ mix deps.get && yarn --cwd=assets

Preparing database

$ mix ecto.setup

Start the Phoenix server

$ ./script/server

Open your browser, and visit http://localhost:4000

Credits