Last active
September 11, 2019 21:07
-
-
Save paveltyk/86d7da6c5da4cb0c778d1d6327fecf06 to your computer and use it in GitHub Desktop.
Phoenix + React + Heroku + Docker https://medium.com/@paveltyk/phoenix-react-heroku-docker-44d5c4a83ab1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule HealthyskinWeb.PageController do | |
use HealthyskinWeb, :controller | |
plug :put_layout, false | |
def index(conn, _params) do | |
render(conn, "index.html") | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment