FEAT: rename pegaz.io -> pegaz.dev
This commit is contained in:
@@ -15,14 +15,15 @@ steps:
|
||||
from_secret: CI_DOMAIN
|
||||
commands:
|
||||
- apk add --upgrade bash findutils rsync sed
|
||||
- WORKDIR="/opt/pegaz/services/pegazio"
|
||||
- WORKDIR="/opt/pegaz/services/pegazdev"
|
||||
- rm -rf $WORKDIR
|
||||
- mkdir $WORKDIR
|
||||
- rsync -av --exclude ./node_modules /drone/src/ $WORKDIR
|
||||
- cd $WORKDIR
|
||||
- sed -i "s|DOMAIN=.*|DOMAIN=\"$CI_DOMAIN\"|g" config.sh
|
||||
- bash /opt/pegaz/cli.pegaz.sh build pegazio &2> /dev/null
|
||||
- bash /opt/pegaz/cli.pegaz.sh up pegazio
|
||||
- sed -i "s|getpegaz.domain.com|get.$CI_DOMAIN|g" config.sh
|
||||
- bash /opt/pegaz/cli.pegaz.sh build pegazdev &2> /dev/null
|
||||
- bash /opt/pegaz/cli.pegaz.sh up pegazdev
|
||||
|
||||
volumes:
|
||||
- name: pegaz
|
||||
|
@@ -1,5 +1,6 @@
|
||||
# TODO
|
||||
|
||||
- [ ] fixed header with links on scroll
|
||||
- [ ] anim pegaz create ??
|
||||
- [ ] presentation de l'arborecense - doc du code
|
||||
- [ ] command line guide - doc du CLI
|
||||
|
6
app.vue
6
app.vue
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div>
|
||||
<Head>
|
||||
<Title>Pegaz.io - docker-compose cli superset</Title>
|
||||
<Title>Pegaz - docker-compose cli superset</Title>
|
||||
<Meta charset="UTF-8" />
|
||||
<Meta name="viewport" content="width=device-width" />
|
||||
<Link
|
||||
@@ -9,13 +9,13 @@
|
||||
type="image/svg+xml"
|
||||
href="https://raw.githubusercontent.com/valerebron/pegaz/master/docs/pegaz.svg"
|
||||
/>
|
||||
<Link rel="canonical" href="https://pegaz.io" />
|
||||
<Link rel="canonical" href="https://pegaz.valerebron.com" />
|
||||
<Meta property="og:title" content="pegaz, deploy stack on the go" />
|
||||
<Meta
|
||||
property="og:image"
|
||||
content="https://raw.githubusercontent.com/valerebron/pegaz/master/docs/pegaz.svg"
|
||||
/>
|
||||
<Meta property="og:site_name" content="Pegaz.io" />
|
||||
<Meta property="og:site_name" content="Pegaz" />
|
||||
<Meta name="description" content="Extending docker-compose functionalities and control multiple docker-compose.yml configurations"/>
|
||||
<Meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
</Head>
|
||||
|
@@ -2,7 +2,7 @@
|
||||
const isClicked = ref(false)
|
||||
const copyToClipBoard = () => {
|
||||
navigator.clipboard
|
||||
.writeText('curl -sL get.pegaz.io | sudo bash')
|
||||
.writeText('curl -sL get.pegaz.dev | sudo bash')
|
||||
.then(() => {
|
||||
isClicked.value = true
|
||||
setTimeout(() => {
|
||||
@@ -24,7 +24,7 @@ const copyToClipBoard = () => {
|
||||
<div
|
||||
class="font-mono bg-neutral-900 text-neutral-50 rounded-xl flex justify-between items-center pl-3 pr-4 py-4 sm:ml-4 border border-transparent text-base shadow-primary-700 relative"
|
||||
>
|
||||
<span class="select-all"> curl -sL get.pegaz.io | sudo bash </span>
|
||||
<span class="select-all"> curl -sL https://get.pegaz.dev | sudo bash </span>
|
||||
<SvgClipboard
|
||||
class="ml-3 cursor-pointer"
|
||||
:class="{ 'animate-ping': isClicked }"
|
||||
|
@@ -11,7 +11,7 @@
|
||||
</div>
|
||||
<div class="text-center py-4">
|
||||
<h1 class="text-5xl font-bold leading-relaxed">
|
||||
Pegaz.io
|
||||
Pegaz
|
||||
</h1>
|
||||
<h2 class="text-3xl text-center">
|
||||
docker-compose cli superset
|
||||
|
@@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
export DOMAIN="pegazio.domain.com"
|
||||
export DOMAIN="pegaz.domain.com"
|
||||
export PORT="7755"
|
||||
export REDIRECTIONS=""
|
||||
export REDIRECTIONS="getpegaz.domain.com->https://raw.githubusercontent.com/valerebron/pegaz/master/get.pegaz.sh"
|
||||
|
@@ -1,9 +1,9 @@
|
||||
version: '3.7'
|
||||
services:
|
||||
pegazio:
|
||||
image: pegazio
|
||||
pegazdev:
|
||||
image: pegazdev
|
||||
build: .
|
||||
container_name: pegazio
|
||||
container_name: pegazdev
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- $PORT:3000
|
||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "pegaz.io",
|
||||
"name": "pegaz",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
|
Reference in New Issue
Block a user