Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marlosirapuan/chate
First experience with Elixir Phoenix..take easy, boi
https://github.com/marlosirapuan/chate
Last synced: about 1 month ago
JSON representation
First experience with Elixir Phoenix..take easy, boi
- Host: GitHub
- URL: https://github.com/marlosirapuan/chate
- Owner: marlosirapuan
- Created: 2019-04-23T17:23:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T01:14:17.000Z (almost 2 years ago)
- Last Synced: 2023-12-12T20:51:21.702Z (about 1 year ago)
- Language: Elixir
- Size: 557 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chate
To start your Phoenix server:
* Install dependencies with `mix deps.get`
* Create and migrate your database with `mix ecto.create && mix ecto.migrate`
* Install Node.js dependencies with `cd assets && npm install`
* Define .env settings and `source .env`
* Start Phoenix endpoint with `mix phx.server`Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.
## Docker
```
docker-compose run --rm app mix ecto.create
docker-compose run --rm app mix ecto.migrate
docker-compose run --rm app mix run priv/repo/seeds.exs
```Build app only
```
docker-compose up -d --no-deps --build app
```