Skip to content

Instantly share code, notes, and snippets.

@vicky002
Last active September 17, 2017 08:19
Show Gist options
  • Save vicky002/57bd7879aae35c278ecefddb5e74beb2 to your computer and use it in GitHub Desktop.
Save vicky002/57bd7879aae35c278ecefddb5e74beb2 to your computer and use it in GitHub Desktop.
Folder Structure - Project 1
.
├── fabulous
 ├── plugins [This will contain different supported services]
 ├── tests [This folder will contains all the tests]
 ├── fabulous.py [Initiate, test all the available services]
 ├── server.py [Will handle the server]
 ├── dummyserver.py [this will create the dummy server]
├── LICENSE
├── README.md
├── bin
 ├── fabulous   [This file will contain automated installation script]
├── .gitignore  [files and folders to avoid while pushing code]
├── setup.py [This file is used to upload project as Python package]
├── requirements.txt [This is for all the project module requirements]
├── Makefile [To automagically build and manage the project]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment