Diffusion: a simple federated social site, built in Gleam
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 24 lines 491 B view raw view rendered
1# diffusion 2 3[![Package Version](https://img.shields.io/hexpm/v/diffusion)](https://hex.pm/packages/diffusion) 4[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/diffusion/) 5 6```sh 7gleam add diffusion@1 8``` 9```gleam 10import diffusion 11 12pub fn main() -> Nil { 13 // TODO: An example of the project in use 14} 15``` 16 17Further documentation can be found at <https://hexdocs.pm/diffusion>. 18 19## Development 20 21```sh 22gleam run # Run the project 23gleam test # Run the tests 24```