Application Package¶
Application package is tar.gz file, that contains application's files.
File structure¶
example-application.tar.gz
├── bin
└── conf
└── conf.yml
Files must be packaged into a tar file.
conf/conf.yml
file is an application configuration file. Click here to read
more about configuration.
bin
directory is used for storing all application files. Bin file can be empty, if e.g. you are using
Docker application.
To simply create an archive on Linux run command tar -czvf <your_archive_name>.tar.gz bin/ conf/
from the directory where you created directories bin
and conf
. It is important as archive keeps the structure of relative paths.