get


Logs | Files | README | README | LICENSE | LICENSE | GitLab


1
commit f589688c98603de5da1df7b5acba4bae335f1a3a
2
Author: Connor Etherington <[email protected]>
3
Date:   Fri Sep 13 22:51:26 2024 +0200
4
5
    Added License
6
---
7
 .gitlab-ci.yml | 5 +++++
8
 LICENSE        | 2 +-
9
 app.js         | 8 ++++++++
10
 3 files changed, 14 insertions(+), 1 deletion(-)
11
12
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
13
index 3feb31f..8a39f36 100644
14
--- a/.gitlab-ci.yml
15
+++ b/.gitlab-ci.yml
16
@@ -1,5 +1,8 @@
17
+image: alpine:latest
18
+
19
 stages:
20
   - release
21
+  - deploy
22
 
23
 release_job:
24
   stage: release
25
@@ -12,3 +15,5 @@ release_job:
26
     description: "Release $CI_COMMIT_TAG"
27
     tag_name: "$CI_COMMIT_TAG"
28
     ref: "$CI_COMMIT_TAG"
29
+
30
+
31
diff --git a/LICENSE b/LICENSE
32
index e01cb67..8cab0ef 100644
33
--- a/LICENSE
34
+++ b/LICENSE
35
@@ -2,7 +2,7 @@ MIT/X Consortium License
36
 
37
 Creator /Maintainer :
38
 
39
-© Connor Etherington <[email protected]>
40
+© Connor Etherington <[email protected]>
41
 
42
 ---------------------------------------------------------------------------
43
 
44
diff --git a/app.js b/app.js
45
index f09578e..3c2b8a7 100755
46
--- a/app.js
47
+++ b/app.js
48
@@ -1,4 +1,12 @@
49
 #!/usr/bin/env node
50
+/**
51
+ * @license get
52
+ * MIT/X Consortium License
53
+ *
54
+ * File: app.js
55
+ * © Agentics (Pty) Ltd <[email protected]>
56
+ *
57
+*/
58
 
59
 const axios = require('axios');
60
 const fs = require('fs');