From 1481e37aac081da3e5a31d8b5f83e0db760ced76 Mon Sep 17 00:00:00 2001 From: Anton Smirnov Date: Fri, 9 Mar 2018 11:44:02 +0200 Subject: [PATCH] Initial commit --- .gitignore | 1 + .gitlab-ci.yml | 12 ++++++++++++ config.json | 35 +++++++++++++++++++++++++++++++++++ 3 files changed, 48 insertions(+) create mode 100644 .gitignore create mode 100644 .gitlab-ci.yml create mode 100644 config.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a09c56d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/.idea diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..e76249e --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +image: docker:latest + +pages: + stage: deploy + script: + - mkdir public + - echo 'Hello World!' > public/index.html + artifacts: + paths: + - public + only: + - master diff --git a/config.json b/config.json new file mode 100644 index 0000000..353428b --- /dev/null +++ b/config.json @@ -0,0 +1,35 @@ +{ + "name": "Sand Fox Repo", + "homepage": "https://satis.sandfox.me/", + "repositories": [ + { + "type": "vcs", + "url": "https://github.com/sandfoxme/composer-viz" + }, + { + "type": "vcs", + "url": "https://github.com/sandfoxme/php-private-access" + }, + { + "type": "vcs", + "url": "https://github.com/sandfoxme/torrent-file" + }, + { + "type": "vcs", + "url": "https://github.com/sandfoxme/unicode-entities" + }, + { + "type": "vcs", + "url": "https://github.com/sandfoxme/bencode" + }, + { + "type": "vcs", + "url": "https://github.com/sandfoxme/monsterid" + }, + { + "type": "vcs", + "url": "https://github.com/sandfoxme/phpstorm-metadata-export" + } + ], + "require-all": true +}