Scotty project specific settings#
To make it easier to configure scotty
for your project needs, you can
create a file called scotty-env
in your project workspace.
You can use all of scotty
’s Used environment variable.
The file is an environment variable file, e.g.
SCOTTY_EXTRA_DOWNLOAD="ssh://git@github.com/my-username/my-project-repo.git"
will automatically enable having a custom project repository available to configure through scotty
.
The file will always be searched for in the current working directory, so be sure to switch
to the directory in question, before running any scotty
command
Preserving variables
If you want to preserve additional variable passed through the command line the file would need to look like this
SCOTTY_EXTRA_DOWNLOAD="${SCOTTY_EXTRA_DOWNLOAD} ssh://git@github.com/my-username/my-project-repo.git"