Last active
August 29, 2015 14:00
-
-
Save 5HT/11309676 to your computer and use it in GitHub Desktop.
Typical Erlang Solution Directory Structure
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
$ tree -L 2 -d | |
. | |
├── [email protected] | |
├── apps | |
│ ├── db | |
│ ├── face | |
│ └── server | |
├── deps | |
│ ├── avz | |
│ ├── cowboy | |
│ ├── cowlib | |
│ ├── erlydtl | |
│ ├── gproc | |
│ ├── kvs | |
│ ├── n2o | |
│ ├── n2o_scripts | |
│ ├── oauth | |
│ ├── ranch | |
│ ├── rest | |
│ ├── shen | |
│ └── sync | |
└── rels | |
└── web | |
apps$ tree -d | |
. | |
├── db | |
│ ├── ebin | |
│ ├── include | |
│ └── src | |
├── face | |
│ ├── ebin | |
│ ├── include | |
│ ├── priv | |
│ │ ├── ssl | |
│ │ ├── static | |
│ │ │ ├── doc | |
│ │ │ │ ├── plans | |
│ │ │ │ └── templates | |
│ │ │ ├── nitrogen -> ../../../../deps/n2o_scripts/n2o | |
│ │ │ └── spa | |
│ │ └── templates | |
│ └── src | |
└── server | |
├── ebin | |
├── include | |
└── src | |
├── auth | |
├── lib | |
├── modules | |
├── okey | |
├── sup | |
└── tavla | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment