Sha256: 7a7655fbfe2161717e63d186ae2b1a4644406bd389d8494d9a3b3fc4988bdce5

Contents?: true

Size: 544 Bytes

Versions: 8

Compression:

Stored size: 544 Bytes

Contents

/**
 * Documentation: http://docs.azk.io/Azkfile.js
 */

// Adds the systems that shape your system
systems({
  zenvia: {
    depends   : [],
    image     : "dynaum/ruby-bundler-node",
    provision : [ "bundle install --binstubs --path /azk/bundler", ],
    workdir   : "/azk/#{manifest.dir}",
    command   : "bundle exec rackup config.ru --port $HTTP_PORT",
    envs      : { RUBY_ENV: "dev", },
    mounts : {
      '/azk/#{manifest.dir}' : path("."),
      "/azk/bundler"         : persistent("bundler-#{system.name}")
    },
  },
});



Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
zenvia-0.0.8 Azkfile.js
zenvia-0.0.7 Azkfile.js
zenvia-0.0.6 Azkfile.js
zenvia-0.0.5 Azkfile.js
zenvia-0.0.4 Azkfile.js
zenvia-0.0.3 Azkfile.js
zenvia-0.0.2 Azkfile.js
zenvia-0.0.1 Azkfile.js