Added Luminus app skeleton; added ADL.

This commit is contained in:
Simon Brooke 2019-12-27 11:28:57 +00:00
parent 8a923c1b33
commit f3c0e728a4
52 changed files with 1761 additions and 0 deletions

28
Capstanfile Normal file
View file

@ -0,0 +1,28 @@
#
# Name of the base image. Capstan will download this automatically from
# Cloudius S3 repository.
#
#base: cloudius/osv
base: cloudius/osv-openjdk8
#
# The command line passed to OSv to start up the application.
#
cmdline: /java.so -jar /pastoralist/app.jar
#
# The command to use to build the application.
# You can use any build tool/command (make/rake/lein/boot) - this runs locally on your machine
#
# For Leiningen, you can use:
#build: lein uberjar
# For Boot, you can use:
#build: boot build
#
# List of files that are included in the generated image.
#
files:
/pastoralist/app.jar: ./target/uberjar/pastoralist.jar