Skip to content

team-alembic/realworld

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

RealWorld Example App

Ash + Phoenix LiveView codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld spec and API.

Demo    RealWorld

This codebase was created to demonstrate a fully fledged fullstack application built with Ash + Phoenix LiveView including CRUD operations, authentication, routing, pagination, and more.

We've gone to great lengths to adhere to the Ash + Phoenix LiveView community styleguides & best practices.

For more information on how to this works with other frontends/backends, head over to the RealWorld repo.

How it works

A fullstack phoenix liveview application with backend built with Ash Framework.

Prerequisites

  • erlang 25.2 and elixir 1.14.2-otp-25
  • PostgreSQL 14.6

Installation

  1. Clone the repo
    git clone https://github.com/team-alembic/realworld.git
    
  2. Install dependencies
    cd realworld
    mix deps.get
    
  3. Create a postgres database and run migration with ash_postgres
    mix ash_postgres.create && mix ash_postgres.migrate
    

Test

  1. Create a test database and run migration with ash_postgres

    MIX_ENV=test mix ash_postgres.create && MIX_ENV=test mix ash_postgres.migrate
    
  2. Run the tests

    mix test
    

Getting started

To start your Phoenix server:

  • Start Phoenix endpoint with mix phx.server or inside IEx with iex -S mix phx.server

Now you can visit localhost:4000 from your browser.

Sending a Pull Request

The consultants at Alembic are monitoring for pull requests when they are “on the beach” (aka when they are not billable or working with a client). We will review your pull request and either merge it, request changes to it, or close it with an explanation. For changes raised when there are no consultants on the beach, please expect some delay. We will do our best to provide update and feedback throughout the process.