Currently using the https://github.com/ubc/satis-go-docker docker container for playing around with satis-go.
My db.json looks like the following (with a whole list of private repo's, next to that laravel one):
{
"name": "My First Satis-Go",
"homepage": "http://127.0.0.1:8080",
"repositories": [
{
"type": "git",
"url": "https://github.com/jamisonvalenta/Laravel-4-Generators.git"
}
],
"require-all": true,
"archive": {
"directory": "dist",
"format": "tar",
"prefix-url": "http://cdn.satis.test"
}
}
After starting satis-go (/opt/satis-go/satis-go) the archive key gets removed from the db.json and is not transfered to the stage.json.
How can I make it create the dist and keep this config?
Currently using the https://github.com/ubc/satis-go-docker docker container for playing around with satis-go.
My db.json looks like the following (with a whole list of private repo's, next to that laravel one):
{ "name": "My First Satis-Go", "homepage": "http://127.0.0.1:8080", "repositories": [ { "type": "git", "url": "https://github.com/jamisonvalenta/Laravel-4-Generators.git" } ], "require-all": true, "archive": { "directory": "dist", "format": "tar", "prefix-url": "http://cdn.satis.test" } }After starting satis-go (
/opt/satis-go/satis-go) thearchivekey gets removed from the db.json and is not transfered to the stage.json.How can I make it create the
distand keep this config?