crossbar.quickstart.main

Attributes

Functions

_initialize()

hl(text[, color, bold])

run()

Module Contents

CC1 = '/home/oberstet/scm/crossbario'[source]
DEVMODE = False[source]
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`.
"""
_cookiecutters[source]
_initialize()[source]
docker_compose_filename = 'docker-compose.yml'[source]
hl(text, color='yellow', bold=True)[source]
makefile_filename = 'Makefile'[source]
readme_filename = 'README.md'[source]
run()[source]