Skip to content

Instantly share code, notes, and snippets.

@jwc20
Last active July 10, 2024 13:51
Show Gist options
  • Save jwc20/92a17cc71099a3e8f770658167784d3f to your computer and use it in GitHub Desktop.
Save jwc20/92a17cc71099a3e8f770658167784d3f to your computer and use it in GitHub Desktop.
project/
├── backend/
│   ├── app                  # "app" is a Python package
│   │   ├── __init__.py      # this file makes "app" a "Python package"
│   │   ├── main.py          # "main" module, e.g. import app.main
│   │   ├── dependencies.py  # "dependencies" module, e.g. import app.dependencies
│   │   ├── routers          # "routers" is a "Python subpackage"
│   │   │   ├── __init__.py  # makes "routers" a "Python subpackage"
│   │   │   ├── items.py     # "items" submodule, e.g. import app.routers.items
│   │   │   └── users.py     # "users" submodule, e.g. import app.routers.users
│   │   └── internal         # "internal" is a "Python subpackage"
│   │       ├── __init__.py  # makes "internal" a "Python subpackage"
│   │       └── admin.py     # "admin" submodule, e.g. import app.internal.admin
├── web/
│   ├── static/
│   │   ├── css/
│   │   │   └── styles.css
│   │   └── js/
│   │       └── scripts.js
│   ├── templates/
│   │   ├── base.html
│   │   ├── index.html
│   │   └── webview.xml
│   ├── main.py
│   └── requirements.txt
├── mobile/
│   └── MyHyperviewApp/
│       ├── __tests__/
│       │   └── App-test.js
│       ├── android/
│       ├── ios/
│       ├── node_modules/
│       ├── src/
│       │   ├── assets/
│       │   ├── components/
│       │   ├── screens/
│       │   ├── styles/
│       │   └── webview.xml
│       ├── .buckconfig
│       ├── .eslintrc.js
│       ├── .gitattributes
│       ├── .gitignore
│       ├── .prettierrc.js
│       ├── App.js
│       ├── app.json
│       ├── babel.config.js
│       ├── index.js
│       ├── metro.config.js
│       ├── package.json
│       ├── README.md
│       └── yarn.lock
├── .gitignore
├── default.nix
└── README.md
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment