From 501ae383bb245c8346dffae3d0098d78a2276b84 Mon Sep 17 00:00:00 2001 From: RayanKazmi <103215438+RayanKazmi@users.noreply.github.com> Date: Sat, 8 Apr 2023 10:49:38 -0400 Subject: [PATCH 1/7] Update config.json --- config.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.json b/config.json index bd474a8b..eecaa475 100644 --- a/config.json +++ b/config.json @@ -1,5 +1,5 @@ { - "ip":"YOUR_ATERNOS_SERVER_IP", - "port": "YOUR_ATERNOS_SERVER_PORT", - "name": "BOT_NAME" + "ip":"DreamSpacex.aternos.me", + "port": "49429", + "name": "DreamspaceBot" } From 2e7ea6abd19d46fc28996af8639cf971204e6337 Mon Sep 17 00:00:00 2001 From: RayanKazmi <103215438+RayanKazmi@users.noreply.github.com> Date: Sat, 8 Apr 2023 12:21:53 -0400 Subject: [PATCH 2/7] Create .circleci --- .circleci | 1 + 1 file changed, 1 insertion(+) create mode 100644 .circleci diff --git a/.circleci b/.circleci new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/.circleci @@ -0,0 +1 @@ + From 092ddf6a9f4af7519b4e9a6e0e7d7b61a0bd1cb6 Mon Sep 17 00:00:00 2001 From: RayanKazmi <103215438+RayanKazmi@users.noreply.github.com> Date: Sat, 8 Apr 2023 12:22:14 -0400 Subject: [PATCH 3/7] Delete .circleci --- .circleci | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .circleci diff --git a/.circleci b/.circleci deleted file mode 100644 index 8b137891..00000000 --- a/.circleci +++ /dev/null @@ -1 +0,0 @@ - From 4533495c9de75b4ba31978526e98cde681932508 Mon Sep 17 00:00:00 2001 From: RayanKazmi <103215438+RayanKazmi@users.noreply.github.com> Date: Sat, 8 Apr 2023 12:25:35 -0400 Subject: [PATCH 4/7] Add files via upload --- config.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 config.yml diff --git a/config.yml b/config.yml new file mode 100644 index 00000000..afe403d1 --- /dev/null +++ b/config.yml @@ -0,0 +1,5 @@ +{ + "ip":"DreamSpacex.aternos.me", + "port": "49429", + "name": "DreamspaceBot" +} \ No newline at end of file From e6f08cfa0d69932fbd9ee85d6a535b00832c4a04 Mon Sep 17 00:00:00 2001 From: RayanKazmi <103215438+RayanKazmi@users.noreply.github.com> Date: Sat, 8 Apr 2023 12:27:23 -0400 Subject: [PATCH 5/7] Add files via upload --- config.yml | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/config.yml b/config.yml index afe403d1..37edaacb 100644 --- a/config.yml +++ b/config.yml @@ -1,5 +1,21 @@ -{ - "ip":"DreamSpacex.aternos.me", - "port": "49429", - "name": "DreamspaceBot" -} \ No newline at end of file +# This config is equivalent to both the '.circleci/extended/orb-free.yml' and the base '.circleci/config.yml' +version: 2.1 + +# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects. +# See: https://circleci.com/docs/2.0/orb-intro/ +orbs: + node: circleci/node@4.7 + +# Invoke jobs via workflows +# See: https://circleci.com/docs/2.0/configuration-reference/#workflows +workflows: + sample: # This is the name of the workflow, feel free to change it to better match your workflow. + # Inside the workflow, you define the jobs you want to run. + jobs: + - node/test: + # This is the node version to use for the `cimg/node` tag + # Relevant tags can be found on the CircleCI Developer Hub + # https://circleci.com/developer/images/image/cimg/node + version: '16.10' + # If you are using yarn, change the line below from "npm" to "yarn" + pkg-manager: npm From 35cec5efa622ca48e70aeecdb402012af295d7e7 Mon Sep 17 00:00:00 2001 From: RayanKazmi <103215438+RayanKazmi@users.noreply.github.com> Date: Sat, 8 Apr 2023 12:28:33 -0400 Subject: [PATCH 6/7] Add files via upload From 743df61cf482599f14ea49e946efb7e4715a1a78 Mon Sep 17 00:00:00 2001 From: RayanKazmi <103215438+RayanKazmi@users.noreply.github.com> Date: Sat, 8 Apr 2023 12:30:38 -0400 Subject: [PATCH 7/7] Delete config.yml --- config.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 config.yml diff --git a/config.yml b/config.yml deleted file mode 100644 index 37edaacb..00000000 --- a/config.yml +++ /dev/null @@ -1,21 +0,0 @@ -# This config is equivalent to both the '.circleci/extended/orb-free.yml' and the base '.circleci/config.yml' -version: 2.1 - -# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects. -# See: https://circleci.com/docs/2.0/orb-intro/ -orbs: - node: circleci/node@4.7 - -# Invoke jobs via workflows -# See: https://circleci.com/docs/2.0/configuration-reference/#workflows -workflows: - sample: # This is the name of the workflow, feel free to change it to better match your workflow. - # Inside the workflow, you define the jobs you want to run. - jobs: - - node/test: - # This is the node version to use for the `cimg/node` tag - # Relevant tags can be found on the CircleCI Developer Hub - # https://circleci.com/developer/images/image/cimg/node - version: '16.10' - # If you are using yarn, change the line below from "npm" to "yarn" - pkg-manager: npm