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
- Host: GitHub
- URL: https://github.com/amos-kibet/ash_blog
- Owner: amos-kibet
- Created: 2024-09-26T20:15:22.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-16T11:04:15.000Z (over 1 year ago)
- Last Synced: 2025-01-23T10:44:19.739Z (over 1 year ago)
- Topics: ashframework, elixir, liveview
- Language: Elixir
- Homepage: https://optimum.ba/blog/getting-started-with-ash-framework-in-elixir
- Size: 201 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AshBlog
This is a demo application, used to showcase the use of Ash framework.


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.