Created
October 20, 2017 18:07
-
-
Save mansu/f953432c07954264529d21df4ca57db1 to your computer and use it in GitHub Desktop.
Python commons folder structure
This file contains 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
# shared dependencies | |
├── 3rdparty | |
│ └── python | |
│ ├── BUILD | |
│ └── requirements.txt | |
├── pants.ini | |
# shared release code | |
├── teletraan_template | |
│ ├── PRE_RESTART.erb | |
│ └── RESTARTING.erb | |
├── Dockerfile_template.erb | |
├── jenkins_build.sh | |
# shared source code | |
└── src | |
├── test | |
│ └── python | |
│ └── srebot | |
│ ├── BUILD | |
│ └── test_bot.py | |
└── main | |
└── python | |
└── srebot | |
├── BUILD | |
└── bot.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment