├── LICENSE ├── README.md ├── admin ├── build_it.sh ├── lib.sh ├── meteor_versions_to_test ├── publish_web_test_bundle.sh ├── pull_tag_default_push.sh ├── run_tests.sh └── tests │ ├── test_bundle_local_mount.sh │ ├── test_bundle_web.sh │ ├── test_lib.sh │ ├── test_meteor_app.sh │ └── test_no_app.sh ├── circle.yml └── images ├── .gitignore ├── base ├── Dockerfile ├── apt-sources.list └── scripts │ ├── lib │ ├── check_node_for_meteor │ ├── get_bundle_meteor_release │ └── version-map.js │ └── run_app.sh ├── builddeps └── Dockerfile └── onbuild ├── Dockerfile └── scripts └── lib └── build_app.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/README.md -------------------------------------------------------------------------------- /admin/build_it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/admin/build_it.sh -------------------------------------------------------------------------------- /admin/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/admin/lib.sh -------------------------------------------------------------------------------- /admin/meteor_versions_to_test: -------------------------------------------------------------------------------- 1 | 1.6.1.2 2 | 1.7.0.1 -------------------------------------------------------------------------------- /admin/publish_web_test_bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/admin/publish_web_test_bundle.sh -------------------------------------------------------------------------------- /admin/pull_tag_default_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/admin/pull_tag_default_push.sh -------------------------------------------------------------------------------- /admin/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/admin/run_tests.sh -------------------------------------------------------------------------------- /admin/tests/test_bundle_local_mount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/admin/tests/test_bundle_local_mount.sh -------------------------------------------------------------------------------- /admin/tests/test_bundle_web.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/admin/tests/test_bundle_web.sh -------------------------------------------------------------------------------- /admin/tests/test_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/admin/tests/test_lib.sh -------------------------------------------------------------------------------- /admin/tests/test_meteor_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/admin/tests/test_meteor_app.sh -------------------------------------------------------------------------------- /admin/tests/test_no_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/admin/tests/test_no_app.sh -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/circle.yml -------------------------------------------------------------------------------- /images/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/images/.gitignore -------------------------------------------------------------------------------- /images/base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/images/base/Dockerfile -------------------------------------------------------------------------------- /images/base/apt-sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/images/base/apt-sources.list -------------------------------------------------------------------------------- /images/base/scripts/lib/check_node_for_meteor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/images/base/scripts/lib/check_node_for_meteor -------------------------------------------------------------------------------- /images/base/scripts/lib/get_bundle_meteor_release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/images/base/scripts/lib/get_bundle_meteor_release -------------------------------------------------------------------------------- /images/base/scripts/lib/version-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/images/base/scripts/lib/version-map.js -------------------------------------------------------------------------------- /images/base/scripts/run_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/images/base/scripts/run_app.sh -------------------------------------------------------------------------------- /images/builddeps/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/images/builddeps/Dockerfile -------------------------------------------------------------------------------- /images/onbuild/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/images/onbuild/Dockerfile -------------------------------------------------------------------------------- /images/onbuild/scripts/lib/build_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abernix/spaceglue/HEAD/images/onbuild/scripts/lib/build_app.sh --------------------------------------------------------------------------------