Last active
August 1, 2020 06:20
-
-
Save ventsislaf/8169163abbf5aa9b6413 to your computer and use it in GitHub Desktop.
Generate secret key base for Phoenix app
This file contains hidden or 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
mix phoenix.gen.secret |
Phoenix 1.4 they're removing mix phoenix.*
. Instead use phx.*
for everything. I.e.
$ mix phx.gen.secret
$ mix phx.gen.html Accounts User users name:string age:integer
$ mix phx.routes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
mix phoenix.gen.secret is deprecated. Use phx.gen.secret instead.