mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
FIX (pages): Add redirects for old comparisons
This commit is contained in:
@@ -303,41 +303,6 @@ export default function ContributePage() {
|
||||
</strong>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
<h2 id="features-available">
|
||||
Features available for contribution
|
||||
</h2>
|
||||
|
||||
<p>You can take any of tasks below into work</p>
|
||||
|
||||
<h3 id="storages">Storages</h3>
|
||||
|
||||
<ul>
|
||||
<li>Add FTP</li>
|
||||
<li>Add Dropbox</li>
|
||||
<li>Add OneDrive</li>
|
||||
<li>Add Yandex Drive</li>
|
||||
</ul>
|
||||
|
||||
<h3 id="notifications-tasks">Notifications tasks</h3>
|
||||
|
||||
<ul>
|
||||
<li>Add Mattermost</li>
|
||||
<li>Add Gotify</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="project-plans">Project plans (not for contribution)</h2>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
Change backups naming from {uuid}.dump to
|
||||
{db_name}_{date}_{uuid}.dump
|
||||
with back compatibility
|
||||
</li>
|
||||
<li>Add SSH tunneling</li>
|
||||
<li>Add HTTPS for Databasus</li>
|
||||
<li>Add support of other languages</li>
|
||||
</ul>
|
||||
</article>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
26
app/postgresus-vs-barman/page.tsx
Normal file
26
app/postgresus-vs-barman/page.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
"use client";
|
||||
|
||||
import { useEffect } from "react";
|
||||
import { useRouter } from "next/navigation";
|
||||
|
||||
export default function PostgresusVsBarmanRedirect() {
|
||||
const router = useRouter();
|
||||
|
||||
useEffect(() => {
|
||||
router.replace("/databasus-vs-barman");
|
||||
}, [router]);
|
||||
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
display: "flex",
|
||||
alignItems: "center",
|
||||
justifyContent: "center",
|
||||
minHeight: "100vh",
|
||||
fontFamily: "system-ui, sans-serif",
|
||||
}}
|
||||
>
|
||||
<p>Redirecting...</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
26
app/postgresus-vs-pgbackrest/page.tsx
Normal file
26
app/postgresus-vs-pgbackrest/page.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
"use client";
|
||||
|
||||
import { useEffect } from "react";
|
||||
import { useRouter } from "next/navigation";
|
||||
|
||||
export default function PostgresusVsPgbackrestRedirect() {
|
||||
const router = useRouter();
|
||||
|
||||
useEffect(() => {
|
||||
router.replace("/databasus-vs-pgbackrest");
|
||||
}, [router]);
|
||||
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
display: "flex",
|
||||
alignItems: "center",
|
||||
justifyContent: "center",
|
||||
minHeight: "100vh",
|
||||
fontFamily: "system-ui, sans-serif",
|
||||
}}
|
||||
>
|
||||
<p>Redirecting...</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
26
app/postgresus-vs-pgbackweb/page.tsx
Normal file
26
app/postgresus-vs-pgbackweb/page.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
"use client";
|
||||
|
||||
import { useEffect } from "react";
|
||||
import { useRouter } from "next/navigation";
|
||||
|
||||
export default function PostgresusVsPgbackwebRedirect() {
|
||||
const router = useRouter();
|
||||
|
||||
useEffect(() => {
|
||||
router.replace("/databasus-vs-pgbackweb");
|
||||
}, [router]);
|
||||
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
display: "flex",
|
||||
alignItems: "center",
|
||||
justifyContent: "center",
|
||||
minHeight: "100vh",
|
||||
fontFamily: "system-ui, sans-serif",
|
||||
}}
|
||||
>
|
||||
<p>Redirecting...</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
26
app/postgresus-vs-wal-g/page.tsx
Normal file
26
app/postgresus-vs-wal-g/page.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
"use client";
|
||||
|
||||
import { useEffect } from "react";
|
||||
import { useRouter } from "next/navigation";
|
||||
|
||||
export default function PostgresusVsWalGRedirect() {
|
||||
const router = useRouter();
|
||||
|
||||
useEffect(() => {
|
||||
router.replace("/databasus-vs-wal-g");
|
||||
}, [router]);
|
||||
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
display: "flex",
|
||||
alignItems: "center",
|
||||
justifyContent: "center",
|
||||
minHeight: "100vh",
|
||||
fontFamily: "system-ui, sans-serif",
|
||||
}}
|
||||
>
|
||||
<p>Redirecting...</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user