Creating JSON / API only Phoenix project

What are the mix phx.new options needed for creating a JSON / API type project only (without HTML etc…)

1 Like

If you are building a SPA with js mix phx.new app --no-html . If you are building a json API only with the client elsewhere: mix phx.new app --no-html --no-brunch

5 Likes