gitextract_4bhtxnk0/ ├── .gitignore ├── LICENSE ├── NimbusMenuBarApp/ │ └── Nimbus/ │ ├── Nimbus/ │ │ ├── APIClient.swift │ │ ├── AppDelegate.swift │ │ ├── Base.lproj/ │ │ │ └── MainMenu.xib │ │ ├── Images.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── KeychainManager.swift │ │ ├── Nimbus-Bridging-Header.h │ │ ├── PreferencesManager.swift │ │ ├── PreferencesWindowController.swift │ │ ├── PreferencesWindowController.xib │ │ ├── ScreenshotWatcher.h │ │ ├── ScreenshotWatcher.m │ │ ├── StatusItemView.swift │ │ ├── SwiftyJSON.swift │ │ └── main.swift │ ├── Nimbus.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── Nimbus.xcscheme │ └── NimbusTests/ │ ├── Info.plist │ └── NimbusTests.swift ├── README.md ├── api_docs.md ├── graphics_assets/ │ └── assets.sketch/ │ ├── Data │ ├── metadata │ └── version ├── manage.py ├── nimbus/ │ ├── __init__.py │ ├── apps/ │ │ ├── __init__.py │ │ ├── accounts/ │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── api/ │ │ │ ├── __init__.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ └── media/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── models.py │ │ ├── serializers.py │ │ ├── urls.py │ │ └── views.py │ ├── settings/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── local.py │ │ ├── production.py │ │ └── secret.sample.py │ ├── static/ │ │ ├── css/ │ │ │ ├── base.css │ │ │ ├── dashboard.css │ │ │ ├── login.css │ │ │ └── share_preview.css │ │ └── js/ │ │ ├── dashboard.js │ │ └── jquery-photo-resize.js │ ├── templates/ │ │ ├── admin/ │ │ │ └── base_site.html │ │ ├── nimbus/ │ │ │ ├── accounts/ │ │ │ │ ├── dashboard.html │ │ │ │ ├── login.html │ │ │ │ └── media_table_row.html │ │ │ ├── media/ │ │ │ │ ├── share_base.html │ │ │ │ ├── share_download.html │ │ │ │ ├── share_img_preview.html │ │ │ │ └── share_txt_preview.html │ │ │ └── page_base.html │ │ └── rest_framework/ │ │ ├── api.html │ │ └── login.html │ ├── utils.py │ └── wsgi.py └── requirements/ ├── base.txt ├── local.txt └── production.txt