real world example app alternatives and similar packages
Based on the "Examples and funny stuff" category.
Alternatively, view real world example app alternatives based on common mentions on social networks and blogs.
-
magnetissimo
Web application that indexes all popular torrent sites, and saves it to the local database. -
changelog.com
Changelog is news and podcast for developers. This is our open source platform. -
phoenix-chat-example
๐ฌ The Step-by-Step Beginners Tutorial for Building, Testing & Deploying a Chat app in Phoenix 1.7 [Latest] ๐ -
phoenix-liveview-counter-tutorial
๐คฏ beginners tutorial building a real time counter in Phoenix 1.7 + LiveView 0.18 โก๏ธ -
phoenix-ecto-encryption-example
๐ A detailed example for how to encrypt data in an Elixir (Phoenix v1.7) App before inserting into a database using Ecto Types -
coderplanets.com
coderplanets.com API(GraphQL) server, build with elixir, phoenix, absinthe -
phoenix-todo-list-tutorial
โ Complete beginners tutorial building a todo list from scratch in Phoenix 1.7 (latest) -
hello_phoenix
Application template for SPAs with Phoenix, React and Redux -
phoenix-flux-react
An experiment with Phoenix Channels, GenEvents, React and Flux. -
portal
A tutorial for shooting fault-tolerant portals for distributed data-transfer application in Elixir -
stranger
Chat anonymously with a randomly chosen stranger -
feedx
Generic feed adding social features to current applications. -
ex_iss
An elixir wrapper for Open Notify's International Space Station API. http://open-notify.org/ -
rubix
A very simple (and barely-functioning) Ruby runner for Elixir -
rollex
Elixir library using a Pratt Parser algorithm to calculate dice rolls.
Access the most powerful time series database as a service
Do you think we are missing an alternative of real world example app or a related project?
README
[RealWorld Example App](logo.png)
Elixir (Phoenix) codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld spec and API.
This codebase was created to demonstrate a fully fledged backend application built with Elixir and Phoenix including CRUD operations, authentication, routing, pagination, and more.
We've gone to great lengths to adhere to the credo community styleguides & best practices.
For more information on how to this works with other frontends/backends, head over to the RealWorld repo.
Installing / Getting started
To run this project, you will need to install the following dependencies on your system:
To get started, run the following commands in your project folder:
cp config/dev.exs.example config/dev.exs # creates the project's configuration file
mix deps.get # installs the dependencies
mix ecto.create # creates the database.
mix ecto.migrate # run the database migrations.
mix phx.server # run the application.
This is a backend project, you won't be able to go to localhost:4000 and see an aplication.
In order to see the Conduit frontend you will need to download and setup one of the frontend projects and set it up to consume this apps api. Typically this can be done by finding the API_URL
and setting it to localhost:4000
.
Tests
To run the tests for this project, simply run in your terminal:
mix test
Documentation
To generate the documentation, your can run in your terminal:
mix docs
This will generate a doc/
directory with a documentation in HTML. To view the documentation, open the index.html
file in the generated directory.
Style guide
This project uses mix format. You can find the configuration file for the formatter in the .formatter.exs
file.
Licensing
MIT ยฉ Ezinwa Okpoechi