An open API service indexing awesome lists of open source software.

https://github.com/amos-kibet/ash_blog

A simple blog post application, built with Elixir and the Ash framework
https://github.com/amos-kibet/ash_blog

ashframework elixir liveview

Last synced: over 1 year ago
JSON representation

A simple blog post application, built with Elixir and the Ash framework

Awesome Lists containing this project

README

          

# AshBlog

This is a demo application, used to showcase the use of Ash framework.

![Homepage](./media/sample_ui_1.png)
![Homepage](./media/sample_ui_2.png)

To start your Phoenix server:

- Run `mix setup` to install and setup dependencies
- Start Phoenix endpoint with `mix phx.server` or inside IEx with `iex -S mix phx.server`

Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.

## Auto-disappearing flash messages

To enable auto-disappearing flash messages, set the `FLASH_AUTO_DISAPPEAR` environmnet variable to an integer representing the delay in seconds. E.g.

```sh
FLASH_AUTO_DISAPPEAR=3
```

To disable, set to 0. The default is 3 seconds.