From 061d29523698dda690fdb298187269e481249e4c Mon Sep 17 00:00:00 2001 From: Fascinated Date: Sun, 2 Jul 2023 14:42:18 +0100 Subject: [PATCH] update to simple links from my personal site --- config.json | 29 ++++++++--------------------- docker-compose.yml | 8 +++++--- 2 files changed, 13 insertions(+), 24 deletions(-) diff --git a/config.json b/config.json index ba70d2e..9427f90 100644 --- a/config.json +++ b/config.json @@ -1,10 +1,13 @@ { - "name": "Lee", - "description": "I'm a 20-year-old software engineer from the UK, and my true passion lies in creating and exploring the endless possibilities within my homelab.", - "avatar": "https://cdn.fascinated.cc/yJQN3D.webp", + "name": "Your Name", + "description": "A description about yourself", + "avatar": "https://cdn.fascinated.cc/KWprz2.jpg", "metadata": { - "title": "fascinated.cc", - "description": "I'm a 20-year-old software engineer from the UK" + "title": "Your Name", + "description": "website description" + }, + "options": { + "showSourceLink": true }, "links": [ { @@ -15,22 +18,6 @@ "hover": "bg-green-600" } }, - { - "title": "Discord", - "url": "https://discord.gg/yjj2U3ctEG", - "color": { - "normal": "bg-violet-700", - "hover": "bg-violet-600" - } - }, - { - "title": "Twitch", - "url": "https://twitch.tv/fascinated_", - "color": { - "normal": "bg-purple-700", - "hover": "bg-purple-600" - } - }, { "title": "Documentation", "url": "https://docs.fascinated.cc", diff --git a/docker-compose.yml b/docker-compose.yml index a3f30e9..f3f0f58 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,12 +2,14 @@ version: "3.4" services: next-app: - build: https://git.fascinated.cc/Fascinated/personal-website.git - # Use this if you want to build the image locally + build: https://git.fascinated.cc/Fascinated/simple-links.git + # Use this below if you want to build the image locally (you need to clone the repo first) # build: . - # image: fascinated/personal-website + # image: fascinated/simple-links restart: always environment: NODE_ENV: production ports: - 3000:3000 + volumes: + - ./config.json:/usr/src/app/config.json