This commit is contained in:
Caramel 2023-03-15 14:24:26 +01:00
parent b7b5d7015e
commit 0e1146f578
No known key found for this signature in database
10 changed files with 17 additions and 17 deletions

2
.github/FUNDING.yml vendored
View File

@ -1,3 +1,3 @@
# These are supported funding model platforms
github: rubikscraft
github: caramelfur

View File

@ -630,7 +630,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
Picsur - An easy to use, selfhostable image sharing service like Imgur
Copyright (C) 2022 Rubikscraft <contact@rubikscraft.nl>
Copyright (C) 2022 Caramel <picsur@caramelfur.dev>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published

View File

@ -3,8 +3,8 @@
"version": "0.5.1",
"description": "Backend for Picsur",
"license": "GPL-3.0",
"repository": "https://github.com/rubikscraft/Picsur",
"author": "Rubikscraft <contact@rubikscraft.nl>",
"repository": "https://github.com/caramelfur/Picsur",
"author": "Caramel <picsur@caramelfur.dev>",
"type": "module",
"main": "dist/main.js",
"scripts": {

View File

@ -3,8 +3,8 @@
"version": "0.5.1",
"description": "Frontend for Picsur",
"license": "GPL-3.0",
"repository": "https://github.com/rubikscraft/Picsur",
"author": "Rubikscraft <contact@rubikscraft.nl>",
"repository": "https://github.com/caramelfur/Picsur",
"author": "Caramel <picsur@caramelfur.dev>",
"type": "module",
"scripts": {
"ng": "ng",

View File

@ -5,8 +5,8 @@
Made with
<span class="material-icons-outlined heart"> favorite_border </span>
by
<a class="link-unstyled" href="https://rubikscraft.nl" target="_blank">
Rubikscraft
<a class="link-unstyled" href="https://caramelfur.dev" target="_blank">
Caramel
</a>
{{ isDemo ? ' - Demo Version' : '' }}
@ -16,7 +16,7 @@
&nbsp;-
{{ version }}
-
<a class="link-unstyled" href="https://github.com/rubikscraft/picsur">
<a class="link-unstyled" href="https://github.com/caramelfur/picsur">
Source Code
</a>
</span>

View File

@ -14,7 +14,7 @@
<link rel="stylesheet" href="/assets/css/loading.css" />
<link rel="stylesheet" href="/assets/css/normalize.min.css" />
<meta name="author" content="Rubikscraft" />
<meta name="author" content="Caramel" />
<meta
name="description"
content="Picsur is an opsource solution for easy image sharing."
@ -24,10 +24,10 @@
<meta property="og:title" content="Picsur" />
<meta property="og:site_name" content="Picsur" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://picsur.rubikscraft.nl" />
<meta property="og:url" content="https://picsur.org" />
<meta
property="og:image"
content="https://picsur.rubikscraft.nl/assets/branding/logo/picsur.svg"
content="https://picsur.org/assets/branding/logo/picsur.svg"
/>
<meta
property="og:description"

View File

@ -3,8 +3,8 @@
"version": "0.5.1",
"description": "Shared libraries for Picsur",
"license": "GPL-3.0",
"repository": "https://github.com/rubikscraft/Picsur",
"author": "Rubikscraft <contact@rubikscraft.nl>",
"repository": "https://github.com/caramelfur/Picsur",
"author": "Caramel <picsur@caramelfur.dev>",
"type": "module",
"main": "./dist/index.js",
"dependencies": {

View File

@ -1,6 +1,6 @@
#!/bin/bash
PACKAGE_URL="ghcr.io/rubikscraft/picsur"
PACKAGE_URL="ghcr.io/caramelfur/picsur"
if [ "$1" == "alpha" ]; then
PACKAGE_URL="$PACKAGE_URL-alpha"

View File

@ -1,7 +1,7 @@
# This dockerfile than builds the production dependencies and the final image
# Always fetch amd64 image
FROM ghcr.io/rubikscraft/picsur-alpha-stage1:latest AS BUILDER_STAGE1
FROM ghcr.io/caramelfur/picsur-alpha-stage1:latest AS BUILDER_STAGE1
FROM node:18-alpine AS BUILDER_STAGE2

View File

@ -1,7 +1,7 @@
version: '3'
services:
picsur:
image: ghcr.io/rubikscraft/picsur:latest
image: ghcr.io/caramelfur/picsur:latest
container_name: picsur
ports:
- '8080:8080'