crossbar.quickstart.main¶
Attributes¶
Functions¶
Module Contents¶
- MAKEFILE = Multiline-String[source]¶
Show Value
""" SUBDIRS = $(shell ls -d */) default: start version: for dir in $(SUBDIRS) ; do echo "$$dir" ; cat $$dir/service.json ; make -C $$dir version ; done build: docker-compose build # the following will automatically build the images from the Dockerfiles # references in docker-compose.yml, and it will also rebuild those images # and recreate containers as needed (eg when the Dockerfile or again a file # referenced therein, such as your actual application source code files, changes) # start: docker-compose up --build """
- README = Multiline-String[source]¶
Show Value
"""# Crossbar.io Quickstart Project This project was generated using quickstart templates for Crossbar.io based services. The services are [Docker](https://www.docker.com/) based, and the service bundling is using [Docker Compose](https://docs.docker.com/compose/). To build your services: ```console make build ``` To check the service versions: ```console make version ``` To start your services: ```console make start ``` > Note: the latter is simply starting all services with `docker-compose up`. To start the services in the background, type `docker-compose up --detach`. """