Skip to content

Instantly share code, notes, and snippets.

@leandrocp
Created October 23, 2018 03:21
Show Gist options
  • Save leandrocp/c960a9f5a186fc771e510753a0de1c0a to your computer and use it in GitHub Desktop.
Save leandrocp/c960a9f5a186fc771e510753a0de1c0a to your computer and use it in GitHub Desktop.
art_bc_dir_structure
➜ tree
.
├── README.md
├── apps
│   ├── sales
│   │   ├── README.md
│   │   ├── config
│   │   │   └── config.exs
│   │   ├── lib
│   │   │   └── sales.ex
│   │   ├── mix.exs
│   │   └── test
│   │   ├── sales_test.exs
│   │   └── test_helper.exs
│   └── support
│   ├── README.md
│   ├── config
│   │   └── config.exs
│   ├── lib
│   │   └── support.ex
│   ├── mix.exs
│   └── test
│   ├── support_test.exs
│   └── test_helper.exs
├── config
│   └── config.exs
└── mix.exs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment