From 76902cbcbec3ab9ebd8d59b8599a61172bdf90d3 Mon Sep 17 00:00:00 2001 From: nicolas Date: Mon, 11 Dec 2023 13:41:45 +0100 Subject: [PATCH] remove circleci --- .circleci/config.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index b61b02ec..00000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,31 +0,0 @@ -version: 2 -machine: - node: - version: 8.12.0 - hosts: - localhost: 127.0.0.1 -jobs: - build: - docker: - - image: circleci/node:8.12.0 - - image: circleci/mongo:3.4.17 - steps: - - checkout - - run: npm install - - run: - name: Instantiate github-keys.json - command: 'echo "{ \"clientID\": \"$GITHUB_CLIENT_ID\", \"clientSecret\": \"$GITHUB_CLIENT_SECRET\", \"callbackURL\": \"$GITHUB_CALLBACK_URL\"}">github-keys.json' - - run: - name: Instantiate blacklist - command: 'echo {} > controller/atlasmakerServer/blacklist.json' - - run: - name: Instantiate whitelist - command: 'echo "{}" > controller/atlasmakerServer/whitelist.json' - - run: - name: Instantiate websocket configuration file - command: 'echo "{\"secure\":false,\"port\":8080,\"ssl_key\": \"\",\"ssl_cert\": \"\",\"ssl_chain\":\"\"}" > cfg.json' - - run: - name: Run server in background - command: 'PORT=3001 npm start' - background: true - - run: sleep 5