summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhongheng Liu <z.liu@outlook.com.gr>2024-04-30 18:33:35 +0300
committerZhongheng Liu <z.liu@outlook.com.gr>2024-04-30 18:33:35 +0300
commit3826519cadd065d30e26cabcebf9b8b4be710cb0 (patch)
treea3b054f68a145a78160862d891cd14321eba6de3
parent515eb89fa1a5e9d8899109c045e4a448896dbcdf (diff)
parentff9726049d8073800746313b57d8d95b4713d88b (diff)
downloadstvnliu.gitlab.io-3826519cadd065d30e26cabcebf9b8b4be710cb0.tar.gz
stvnliu.gitlab.io-3826519cadd065d30e26cabcebf9b8b4be710cb0.tar.bz2
stvnliu.gitlab.io-3826519cadd065d30e26cabcebf9b8b4be710cb0.zip
Merge branch 'main' of gitlab.com:stvnliu/homepage
-rw-r--r--.gitlab-ci.yml2
-rw-r--r--LICENSE21
2 files changed, 23 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8692073..102e97c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,10 +2,12 @@
image: node:lts
# Functions that should be executed before the build script is run
before_script:
+ - cd ./app
- npm install
pages:
script:
- npm run build
+ - cp -r ./build/* ../public
artifacts:
paths:
# The folder that contains the files to be exposed at the Page URL
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..c7fde2d
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2024 Zhongheng Liu
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.