Skysoft13
Create CRUD Applications with Phoenix Framework
I am new in elixir world, and it is fantastic programing language for me, I try to create CRUD app with Phoenix Framework, you can create with mix phx.new hello_world or mix phx.new ~/Workspace/hello_world --no-html --no-assets , my question is if want to create huge CRUD Apps like Pinterest for more than 100M users, it will be problem just work with API’s , for example your front end is React.js and your back end created with mix phx.new ~/Workspace/hello_world --no-html --no-assets . it will be problem?
Most Liked
Exadra37
If you don’t use something its good idea to not generate it:
mix help phx.new | grep no- -
Will output something like this:
• --no-assets - do not generate the assets folder. When choosing this
• --no-ecto - do not generate Ecto files
• --no-html - do not generate HTML views
• --no-gettext - do not generate gettext files
• --no-dashboard - do not include Phoenix.LiveDashboard
• --no-live - comment out LiveView socket setup in assets/js/app.js and
also on the endpoint (the latter also requires --no-dashboard)
• --no-mailer - do not generate Swoosh mailer files
Anything that you don’t use form the list you should add to the mix phx.new command.
4
benwilson512
Author of Craft GraphQL APIs in Elixir with Absinthe
Skysoft13
Popular in Discussions
Erlang :list.nth simple, but 1 - based
nth(1, [H|_]) -> H;
nth(N, [_|T]) when N > 1 ->
nth(N - 1, T).
Elixir Enum.at … coo...
New
Hey everyone,
this has been brewing in my head some time and it came up again while reading Adopting Elixir.
GenServers, supervisors et...
New
Another point that Dave drives home in his course is that applications really are components, and you should treat them as such. Not as “...
New
I’ve been using umbrellas for a while, and generally started off (on greenfield projects at least) by isolating subapps based on clearly ...
New
Hello everyone,
I know we had quite some threads (read through lots of them) about background job processing but it remains a hotly deba...
New
We’re considering our architecture from a viewpoint of scaling our traffic heavily over the next 6 months. Our current deployment is runn...
New
The upcoming Phoenix 1.6 release looks very interesting. Became a habit to watch the commits - and - what they are bringing in.
phx.gen...
New
Other popular topics
What is the proper way to load a module from a file in to IEX?
In the python world, doing something like this pretty standard:
from ....
New
TL;DR: I’ve just released an implementation of Microsoft’s IDE-independent Language Server Protocol for Elixir. It adds language support ...
New
I am using Ecto timestamps with postgres, I can see the timestamps() use the :naive_dateime but for my use case I wanted to store the ti...
New
I have a another noob question about loop. Since elixir is immutable, while loop is not directly possible.
total = 10
while total != 0
...
New
Hey,
Just curious what are the main benefits of Elixir compared to Clojure?
When is Elixir more useful than Clojure and vice versa?
Th...
New
I’ve got an issue with an app and I’ve no idea of how to troubleshoot it. I’m hoping someone here might have seen something similar.
I p...
New
Latest Phoenix Threads
Chat & Discussions>Discussions
Latest on Elixir Forum
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #elixirconf-us
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex









