Guest User

Untitled

a guest
Feb 24th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. {
  2. "lib/*.ex": {
  3. "type": "module",
  4. "alternate": "test/{}_test.exs"
  5. },
  6.  
  7. "test/*_test.exs": {
  8. "type": "test",
  9. "alternate": "lib/{}.ex"
  10. },
  11.  
  12. "lib/**/controllers/*_controller.ex": {
  13. "type": "controller",
  14. "alternate": "test/{dirname}/controllers/{basename}_controller_test.exs"
  15. },
  16. "lib/**/templates/*.html.eex": {
  17. "type": "template",
  18. "alternate": "lib/{dirname}/views/{basename}_view.ex"
  19. },
  20. "lib/**/views/*_view.ex": {
  21. "type": "view",
  22. "alternate": "test/{dirname}/views/{basename}_view_test.ex"
  23. },
  24. "lib/*/router.ex": {
  25. "type": "router",
  26. "alternate": "lib/{}/router.ex"
  27. },
  28.  
  29.  
  30. "README.md": { "type": "docs" },
  31. "docs/*.md": { "type": "docs" },
  32. "assets/css/*.css": { "type": "css" },
  33. "assets/js/*.js": { "type": "js" },
  34. "config/*.exs": { "type": "config" },
  35. "config/config.exs": { "type": "config" },
  36. "mix.exs": { "type": "mix" },
  37. "priv/repo/seeds.exs": { "type": "seeds" },
  38. "priv/repo/migrations/*.exs": {
  39. "type": "migration",
  40. "make": "mix ecto.migrate"
  41. },
  42.  
  43. "*": {
  44. "console": "iex -S mix",
  45. "make": "mix compile",
  46. "start": "mix phx.server"
  47. }
  48. }
Add Comment
Please, Sign In to add comment