A blog application.
![]() List articles |
![]() Edit article |
![]() Show article |
- Elixir
- Phoenix
- Postgresql
- Ecto
- Bootstrap
- Docker
- Docker compose
To run this application you must have these resources installed:
# Docker compose setup
$ docker-compose up --build -d
# Setup the database
$ docker-compose exec web mix ecto.setup
# Run the server
$ docker-compose exec web mix phx.server
The project will be available at localhost:4000.
# Docker compose setup
$ docker-compose up --build -d
# Setup the database
$ docker-compose exec web MIX_ENV=test mix ecto.reset
# Run the tests
$ docker-compose exec web mix test