├── .gitignore ├── CODE_OF_CONDUCT.md ├── License.md ├── README.md ├── __init__.py ├── configure.py ├── docker-compose-setup.yml ├── docker-compose.yml ├── lib └── __init__.py ├── manage_db.py ├── migrations ├── README ├── alembic.ini ├── env.py └── script.py.mako ├── requirements.txt ├── run.py └── vectorcloud ├── __init__.py ├── application_store ├── __init__.py ├── forms.py ├── list │ ├── azure_example.ini │ ├── database_example.ini │ ├── display_text.ini │ ├── dock_with_cube.ini │ ├── drive_square.ini │ ├── eye_color.ini │ ├── face_image.ini │ ├── find_cliff.ini │ ├── hello_world.ini │ ├── ifttt_applet.ini │ ├── interactive_say_text.ini │ ├── loop_test.ini │ ├── motors.ini │ ├── play_animation.ini │ └── say_text.ini ├── packages │ ├── azure_example.zip │ ├── database_example.zip │ ├── display_text.zip │ ├── dock_with_cube.zip │ ├── drive_square.zip │ ├── eye_color.zip │ ├── face_image.zip │ ├── find_cliff.zip │ ├── hello_world.zip │ ├── ifttt_applet.zip │ ├── interactive_say_text.zip │ ├── loop_test.zip │ ├── motors.zip │ ├── play_animation.zip │ └── say_text.zip ├── routes.py └── utils.py ├── application_system ├── __init__.py ├── forms.py ├── routes.py └── utils.py ├── error_pages ├── __init__.py └── routes.py ├── errors.py ├── flask_app └── routes.py ├── main ├── __init__.py ├── forms.py ├── routes.py └── utils.py ├── manage_vectors ├── __init__.py ├── forms.py ├── routes.py └── utils.py ├── models.py ├── paths.py ├── rest_api ├── __init__.py └── resources.py ├── settings_system ├── __init__.py ├── forms.py └── routes.py ├── static ├── app_icons │ ├── anki.png │ ├── azure.png │ └── default.png ├── css │ ├── main.css │ └── white-theme.css ├── icons │ ├── add.svg │ ├── ajax-loader.gif │ ├── arrow-down.svg │ ├── battery_charging.svg │ ├── battery_empty.svg │ ├── battery_full.svg │ ├── battery_low.svg │ ├── battery_med.svg │ ├── bullseye-grey.svg │ ├── bullseye.svg │ ├── card.svg │ ├── close.svg │ ├── copy.svg │ ├── credits.svg │ ├── cube.svg │ ├── dock.svg │ ├── download-menu.svg │ ├── download.svg │ ├── edit.svg │ ├── files.svg │ ├── help.svg │ ├── info-menu.svg │ ├── info.svg │ ├── installed.svg │ ├── list.svg │ ├── logout.svg │ ├── menu.svg │ ├── package-grey.svg │ ├── package.svg │ ├── play.svg │ ├── power.svg │ ├── remote.svg │ ├── running_in_bkrd.svg │ ├── send.svg │ ├── settings-menu.svg │ ├── settings.svg │ ├── trash-menu.svg │ ├── trash.svg │ ├── undock.svg │ ├── update-needed.svg │ ├── update.svg │ ├── updated.svg │ ├── upload.svg │ ├── user.svg │ ├── vector-green.svg │ ├── vector.svg │ ├── vectorcloud.svg │ └── wifi.svg └── js │ ├── body.js │ └── head.js ├── templates ├── applications │ ├── app_store.html │ └── upload.html ├── control.html ├── error_pages │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── multiple_vectors.html │ ├── sdk_error.html │ ├── vector_not_found.html │ └── vector_stuck.html ├── home.html ├── layout.html ├── manage_vectors.html ├── prompt.html ├── settings │ ├── credits.html │ ├── main.html │ ├── settings.html │ ├── update.html │ └── user.html ├── user │ ├── login.html │ ├── register.html │ └── welcome.html ├── utility_window.html └── wiki │ ├── api.html │ ├── applications.html │ ├── database.html │ ├── tutorials.html │ ├── wiki_layout.html │ └── wiki_main.html ├── update_system ├── __init__.py ├── routes.py └── utils.py ├── user_system ├── __init__.py ├── forms.py ├── routes.py └── utils.py ├── version.py └── wiki_system ├── __init__.py └── routes.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/configure.py -------------------------------------------------------------------------------- /docker-compose-setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/docker-compose-setup.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manage_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/manage_db.py -------------------------------------------------------------------------------- /migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/migrations/alembic.ini -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/run.py -------------------------------------------------------------------------------- /vectorcloud/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/__init__.py -------------------------------------------------------------------------------- /vectorcloud/application_store/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /vectorcloud/application_store/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/forms.py -------------------------------------------------------------------------------- /vectorcloud/application_store/list/azure_example.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/list/azure_example.ini -------------------------------------------------------------------------------- /vectorcloud/application_store/list/database_example.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/list/database_example.ini -------------------------------------------------------------------------------- /vectorcloud/application_store/list/display_text.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/list/display_text.ini -------------------------------------------------------------------------------- /vectorcloud/application_store/list/dock_with_cube.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/list/dock_with_cube.ini -------------------------------------------------------------------------------- /vectorcloud/application_store/list/drive_square.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/list/drive_square.ini -------------------------------------------------------------------------------- /vectorcloud/application_store/list/eye_color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/list/eye_color.ini -------------------------------------------------------------------------------- /vectorcloud/application_store/list/face_image.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/list/face_image.ini -------------------------------------------------------------------------------- /vectorcloud/application_store/list/find_cliff.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/list/find_cliff.ini -------------------------------------------------------------------------------- /vectorcloud/application_store/list/hello_world.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/list/hello_world.ini -------------------------------------------------------------------------------- /vectorcloud/application_store/list/ifttt_applet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/list/ifttt_applet.ini -------------------------------------------------------------------------------- /vectorcloud/application_store/list/interactive_say_text.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/list/interactive_say_text.ini -------------------------------------------------------------------------------- /vectorcloud/application_store/list/loop_test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/list/loop_test.ini -------------------------------------------------------------------------------- /vectorcloud/application_store/list/motors.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/list/motors.ini -------------------------------------------------------------------------------- /vectorcloud/application_store/list/play_animation.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/list/play_animation.ini -------------------------------------------------------------------------------- /vectorcloud/application_store/list/say_text.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/list/say_text.ini -------------------------------------------------------------------------------- /vectorcloud/application_store/packages/azure_example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/packages/azure_example.zip -------------------------------------------------------------------------------- /vectorcloud/application_store/packages/database_example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/packages/database_example.zip -------------------------------------------------------------------------------- /vectorcloud/application_store/packages/display_text.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/packages/display_text.zip -------------------------------------------------------------------------------- /vectorcloud/application_store/packages/dock_with_cube.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/packages/dock_with_cube.zip -------------------------------------------------------------------------------- /vectorcloud/application_store/packages/drive_square.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/packages/drive_square.zip -------------------------------------------------------------------------------- /vectorcloud/application_store/packages/eye_color.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/packages/eye_color.zip -------------------------------------------------------------------------------- /vectorcloud/application_store/packages/face_image.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/packages/face_image.zip -------------------------------------------------------------------------------- /vectorcloud/application_store/packages/find_cliff.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/packages/find_cliff.zip -------------------------------------------------------------------------------- /vectorcloud/application_store/packages/hello_world.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/packages/hello_world.zip -------------------------------------------------------------------------------- /vectorcloud/application_store/packages/ifttt_applet.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/packages/ifttt_applet.zip -------------------------------------------------------------------------------- /vectorcloud/application_store/packages/interactive_say_text.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/packages/interactive_say_text.zip -------------------------------------------------------------------------------- /vectorcloud/application_store/packages/loop_test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/packages/loop_test.zip -------------------------------------------------------------------------------- /vectorcloud/application_store/packages/motors.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/packages/motors.zip -------------------------------------------------------------------------------- /vectorcloud/application_store/packages/play_animation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/packages/play_animation.zip -------------------------------------------------------------------------------- /vectorcloud/application_store/packages/say_text.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/packages/say_text.zip -------------------------------------------------------------------------------- /vectorcloud/application_store/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/routes.py -------------------------------------------------------------------------------- /vectorcloud/application_store/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_store/utils.py -------------------------------------------------------------------------------- /vectorcloud/application_system/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /vectorcloud/application_system/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_system/forms.py -------------------------------------------------------------------------------- /vectorcloud/application_system/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_system/routes.py -------------------------------------------------------------------------------- /vectorcloud/application_system/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/application_system/utils.py -------------------------------------------------------------------------------- /vectorcloud/error_pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vectorcloud/error_pages/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/error_pages/routes.py -------------------------------------------------------------------------------- /vectorcloud/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/errors.py -------------------------------------------------------------------------------- /vectorcloud/flask_app/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/flask_app/routes.py -------------------------------------------------------------------------------- /vectorcloud/main/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /vectorcloud/main/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/main/forms.py -------------------------------------------------------------------------------- /vectorcloud/main/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/main/routes.py -------------------------------------------------------------------------------- /vectorcloud/main/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/main/utils.py -------------------------------------------------------------------------------- /vectorcloud/manage_vectors/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /vectorcloud/manage_vectors/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/manage_vectors/forms.py -------------------------------------------------------------------------------- /vectorcloud/manage_vectors/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/manage_vectors/routes.py -------------------------------------------------------------------------------- /vectorcloud/manage_vectors/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/manage_vectors/utils.py -------------------------------------------------------------------------------- /vectorcloud/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/models.py -------------------------------------------------------------------------------- /vectorcloud/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/paths.py -------------------------------------------------------------------------------- /vectorcloud/rest_api/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /vectorcloud/rest_api/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/rest_api/resources.py -------------------------------------------------------------------------------- /vectorcloud/settings_system/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /vectorcloud/settings_system/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/settings_system/forms.py -------------------------------------------------------------------------------- /vectorcloud/settings_system/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/settings_system/routes.py -------------------------------------------------------------------------------- /vectorcloud/static/app_icons/anki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/app_icons/anki.png -------------------------------------------------------------------------------- /vectorcloud/static/app_icons/azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/app_icons/azure.png -------------------------------------------------------------------------------- /vectorcloud/static/app_icons/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/app_icons/default.png -------------------------------------------------------------------------------- /vectorcloud/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/css/main.css -------------------------------------------------------------------------------- /vectorcloud/static/css/white-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/css/white-theme.css -------------------------------------------------------------------------------- /vectorcloud/static/icons/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/add.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/ajax-loader.gif -------------------------------------------------------------------------------- /vectorcloud/static/icons/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/arrow-down.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/battery_charging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/battery_charging.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/battery_empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/battery_empty.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/battery_full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/battery_full.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/battery_low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/battery_low.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/battery_med.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/battery_med.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/bullseye-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/bullseye-grey.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/bullseye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/bullseye.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/card.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/close.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/copy.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/credits.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/credits.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/cube.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/dock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/dock.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/download-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/download-menu.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/download.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/edit.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/files.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/files.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/help.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/info-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/info-menu.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/info.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/installed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/installed.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/list.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/logout.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/menu.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/package-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/package-grey.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/package.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/play.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/power.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/remote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/remote.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/running_in_bkrd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/running_in_bkrd.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/send.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/settings-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/settings-menu.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/settings.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/trash-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/trash-menu.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/trash.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/undock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/undock.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/update-needed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/update-needed.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/update.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/updated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/updated.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/upload.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/user.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/vector-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/vector-green.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/vector.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/vectorcloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/vectorcloud.svg -------------------------------------------------------------------------------- /vectorcloud/static/icons/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/icons/wifi.svg -------------------------------------------------------------------------------- /vectorcloud/static/js/body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/js/body.js -------------------------------------------------------------------------------- /vectorcloud/static/js/head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/static/js/head.js -------------------------------------------------------------------------------- /vectorcloud/templates/applications/app_store.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/applications/app_store.html -------------------------------------------------------------------------------- /vectorcloud/templates/applications/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/applications/upload.html -------------------------------------------------------------------------------- /vectorcloud/templates/control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/control.html -------------------------------------------------------------------------------- /vectorcloud/templates/error_pages/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/error_pages/403.html -------------------------------------------------------------------------------- /vectorcloud/templates/error_pages/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/error_pages/404.html -------------------------------------------------------------------------------- /vectorcloud/templates/error_pages/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/error_pages/500.html -------------------------------------------------------------------------------- /vectorcloud/templates/error_pages/multiple_vectors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/error_pages/multiple_vectors.html -------------------------------------------------------------------------------- /vectorcloud/templates/error_pages/sdk_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/error_pages/sdk_error.html -------------------------------------------------------------------------------- /vectorcloud/templates/error_pages/vector_not_found.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/error_pages/vector_not_found.html -------------------------------------------------------------------------------- /vectorcloud/templates/error_pages/vector_stuck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/error_pages/vector_stuck.html -------------------------------------------------------------------------------- /vectorcloud/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/home.html -------------------------------------------------------------------------------- /vectorcloud/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/layout.html -------------------------------------------------------------------------------- /vectorcloud/templates/manage_vectors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/manage_vectors.html -------------------------------------------------------------------------------- /vectorcloud/templates/prompt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/prompt.html -------------------------------------------------------------------------------- /vectorcloud/templates/settings/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/settings/credits.html -------------------------------------------------------------------------------- /vectorcloud/templates/settings/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/settings/main.html -------------------------------------------------------------------------------- /vectorcloud/templates/settings/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/settings/settings.html -------------------------------------------------------------------------------- /vectorcloud/templates/settings/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/settings/update.html -------------------------------------------------------------------------------- /vectorcloud/templates/settings/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/settings/user.html -------------------------------------------------------------------------------- /vectorcloud/templates/user/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/user/login.html -------------------------------------------------------------------------------- /vectorcloud/templates/user/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/user/register.html -------------------------------------------------------------------------------- /vectorcloud/templates/user/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/user/welcome.html -------------------------------------------------------------------------------- /vectorcloud/templates/utility_window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/utility_window.html -------------------------------------------------------------------------------- /vectorcloud/templates/wiki/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/wiki/api.html -------------------------------------------------------------------------------- /vectorcloud/templates/wiki/applications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/wiki/applications.html -------------------------------------------------------------------------------- /vectorcloud/templates/wiki/database.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/wiki/database.html -------------------------------------------------------------------------------- /vectorcloud/templates/wiki/tutorials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/wiki/tutorials.html -------------------------------------------------------------------------------- /vectorcloud/templates/wiki/wiki_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/wiki/wiki_layout.html -------------------------------------------------------------------------------- /vectorcloud/templates/wiki/wiki_main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/templates/wiki/wiki_main.html -------------------------------------------------------------------------------- /vectorcloud/update_system/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /vectorcloud/update_system/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/update_system/routes.py -------------------------------------------------------------------------------- /vectorcloud/update_system/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/update_system/utils.py -------------------------------------------------------------------------------- /vectorcloud/user_system/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /vectorcloud/user_system/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/user_system/forms.py -------------------------------------------------------------------------------- /vectorcloud/user_system/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/user_system/routes.py -------------------------------------------------------------------------------- /vectorcloud/user_system/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/user_system/utils.py -------------------------------------------------------------------------------- /vectorcloud/version.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | vectorcloud_version = 'v1.2.2' 4 | -------------------------------------------------------------------------------- /vectorcloud/wiki_system/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /vectorcloud/wiki_system/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmountjoy92/VectorCloud/HEAD/vectorcloud/wiki_system/routes.py --------------------------------------------------------------------------------