Last active
August 29, 2015 14:21
-
-
Save darioghilardi/8f1815f92457e456901f to your computer and use it in GitHub Desktop.
elixir_003: Mix
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 new project_name | |
# * creating README.md | |
# * creating .gitignore | |
# * creating mix.exs | |
# * creating config | |
# * creating config/config.exs | |
# * creating lib | |
# * creating lib/project_name.ex | |
# * creating test | |
# * creating test/test_helper.exs | |
# * creating test/project_name_test.exs | |
# | |
# Your mix project was created successfully. | |
# You can use mix to compile it, test it, and more: | |
# | |
# cd project_name | |
# mix test | |
# | |
# Run `mix help` for more commands. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment