Skip to content

Instantly share code, notes, and snippets.

@5HT
Last active August 29, 2015 14:00
Show Gist options
  • Save 5HT/11309676 to your computer and use it in GitHub Desktop.
Save 5HT/11309676 to your computer and use it in GitHub Desktop.
Typical Erlang Solution Directory Structure
$ 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