Compare commits
4 Commits
921318f92f
...
eef02431b8
| Author | SHA1 | Date | |
|---|---|---|---|
|
eef02431b8
|
|||
|
e05c61f0fe
|
|||
|
67aa60a53b
|
|||
|
860bfe74df
|
+1
-1
@@ -61,7 +61,7 @@ NEXT_PUBLIC_GADE_USERNAME=
|
||||
NEXT_PUBLIC_YOUTUBE_USERNAME=
|
||||
NEXT_PUBLIC_TELEGRAM_GROUP=
|
||||
NEXT_PUBLIC_XMPP=
|
||||
NEXT_PUBLIC_CODEBERG=
|
||||
NEXT_PUBLIC_GIT=
|
||||
|
||||
# DOMAIN IMAGE
|
||||
NEXT_PUBLIC_DOMAINS_IMAGE="localhost:1337 strapi.mondomaine.com"
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
## Prérequis
|
||||
- Node >= 20
|
||||
- [API](https://codeberg.org/OKI/api.pawol.nu)
|
||||
- [API](https://labola.o-k-i.net/ORGANISATION-KA-INTERNATIONALE/api.pawol.nu)
|
||||
|
||||
## Variables d'environement
|
||||
- Copier le contenu du fichier `.env.sample` dans un nouveau fichier `.env`
|
||||
|
||||
@@ -95,7 +95,7 @@ export default function Cgu() {
|
||||
<ArrowRightAltIcon />
|
||||
</ListItemIcon>
|
||||
<ListItemText>
|
||||
<strong>Git</strong> : <Link target='_blank' rel='noreferrer' href='https://codeberg.org/OKI'><strong>codeberg.org/OKI</strong></Link>
|
||||
<strong>Git</strong> : <Link target='_blank' rel='noreferrer' href='https://labola.o-k-i.net/ORGANISATION-KA-INTERNATIONALE'><strong>LABOLA - OKI</strong></Link>
|
||||
</ListItemText>
|
||||
</ListItem>
|
||||
</List>
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
import {SvgIcon} from '@mui/material'
|
||||
|
||||
export default function GiteaIcon(props) {
|
||||
return (
|
||||
<SvgIcon {...props}>
|
||||
<path d='M4.186 5.421C2.341 5.417-.13 6.59.006 9.531c.213 4.594 4.92 5.02 6.801 5.057.206.862 2.42 3.834 4.059 3.99h7.18c4.306-.286 7.53-13.022 5.14-13.07-3.953.186-6.296.28-8.305.296v3.975l-.626-.277-.004-3.696c-2.306-.001-4.336-.108-8.189-.298-.482-.003-1.154-.085-1.876-.087zm.261 1.625h.22c.262 2.355.688 3.732 1.55 5.836-2.2-.26-4.072-.899-4.416-3.285-.178-1.235.422-2.524 2.646-2.552zm8.557 2.315c.15.002.303.03.447.096l.749.323-.537.979a.672.597 0 0 0-.241.038.672.597 0 0 0-.405.764.672.597 0 0 0 .112.174l-.926 1.686a.672.597 0 0 0-.222.038.672.597 0 0 0-.405.764.672.597 0 0 0 .86.36.672.597 0 0 0 .404-.765.672.597 0 0 0-.158-.22l.902-1.642a.672.597 0 0 0 .293-.03.672.597 0 0 0 .213-.112c.348.146.633.265.838.366.308.152.417.253.45.365.033.11-.003.322-.177.694-.13.277-.345.67-.599 1.133a.672.597 0 0 0-.251.038.672.597 0 0 0-.405.764.672.597 0 0 0 .86.36.672.597 0 0 0 .404-.764.672.597 0 0 0-.137-.202c.251-.458.467-.852.606-1.148.188-.402.286-.701.2-.99-.086-.289-.35-.477-.7-.65-.23-.113-.517-.233-.86-.377a.672.597 0 0 0-.038-.239.672.597 0 0 0-.145-.209l.528-.963 2.924 1.263c.528.229.746.79.49 1.26l-2.01 3.68c-.257.469-.888.663-1.416.435l-4.137-1.788c-.528-.228-.747-.79-.49-1.26l2.01-3.679c.176-.323.53-.515.905-.53h.064z' />
|
||||
</SvgIcon>
|
||||
)
|
||||
}
|
||||
+5
-5
@@ -4,10 +4,10 @@ import TelegramIcon from '@mui/icons-material/Telegram'
|
||||
import PeertubeIcon from './icons/peertube'
|
||||
import XmppIcon from './icons/xmpp'
|
||||
import XIcon from './icons/x'
|
||||
import CodebergIcon from './icons/codeberg'
|
||||
import GiteaIcon from './icons/gitea'
|
||||
import BlueskyIcon from './icons/bluesky'
|
||||
|
||||
const codebergURL = process.env.NEXT_PUBLIC_CODEBERG || 'https://codeberg.org/OKI'
|
||||
const gitURL = process.env.NEXT_PUBLIC_GIT || 'https://labola.o-k-i.net/ORGANISATION-KA-INTERNATIONALE/api.pawol.nu'
|
||||
const blueskyUrl = process.env.NEXT_PUBLIC_BLUESKY_URL || 'https://bsky.app/profile/organisationka.bsky.social'
|
||||
const xmppContact = process.env.NEXT_PUBLIC_XMPP || 'oki@xmpp.cz'
|
||||
const gadeUsername = process.env.NEXT_PUBLIC_GADE_USERNAME || 'oki'
|
||||
@@ -17,9 +17,9 @@ const telegramGroup = process.env.NEXT_PUBLIC_TELEGRAM_GROUP || 'OrganisationKA'
|
||||
|
||||
export const rezoLis = [
|
||||
{
|
||||
tit: 'Codeberg',
|
||||
lyen: codebergURL,
|
||||
icon: <CodebergIcon />
|
||||
tit: 'Git',
|
||||
lyen: gitURL,
|
||||
icon: <GiteaIcon />
|
||||
},
|
||||
{
|
||||
tit: 'Bluesky',
|
||||
|
||||
+4
-4
@@ -5,13 +5,13 @@
|
||||
"private": false,
|
||||
"license": "AGPL-3.0",
|
||||
"author": {
|
||||
"name": "Cédric Famibelle-Pronzola",
|
||||
"email": "contact@cedric-pronzola.dev",
|
||||
"url": "https://cedric-pronzola.dev"
|
||||
"name": "ORGANSATION KA INTERNATIONALE",
|
||||
"email": "kontak@o-k-i.net",
|
||||
"url": "https://o-k-i.net"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://codeberg.org/OKI/pawol.nu.git"
|
||||
"url": "git+https://labola.o-k-i.net/ORGANISATION-KA-INTERNATIONALE/api.pawol.nu"
|
||||
},
|
||||
"scripts": {
|
||||
"lint": "xo",
|
||||
|
||||
Reference in New Issue
Block a user