Compare commits
16 Commits
10bab6c44c
...
0.0.4
Author | SHA1 | Date | |
---|---|---|---|
d0d3a3deea | |||
7be8dc7bc2 | |||
fdf23dd510 | |||
fa9303b792 | |||
f9f86dcc8b | |||
eeb250a7c5 | |||
039c16ff3e | |||
248c1d3327 | |||
71b6833c8a | |||
a8c465eafe | |||
7e654ab874 | |||
a806f448a2 | |||
d0cd151ab8 | |||
5e3419c3c3 | |||
0964c0c9bb | |||
bf4134e2d6 |
40
.dockerignore
Normal file
40
.dockerignore
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
# Node modules
|
||||||
|
node_modules
|
||||||
|
**/node_modules
|
||||||
|
|
||||||
|
# Logs
|
||||||
|
*.log
|
||||||
|
logs
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
|
||||||
|
# Build outputs
|
||||||
|
build
|
||||||
|
dist
|
||||||
|
out
|
||||||
|
.next
|
||||||
|
.cache
|
||||||
|
.parcel-cache
|
||||||
|
|
||||||
|
# Environment files
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
.env.development.local
|
||||||
|
.env.test.local
|
||||||
|
.env.production.local
|
||||||
|
|
||||||
|
# OS files
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# IDE / Editor folders
|
||||||
|
.vscode
|
||||||
|
.idea
|
||||||
|
*.sublime-workspace
|
||||||
|
*.sublime-project
|
||||||
|
|
||||||
|
# Temporary files
|
||||||
|
*.swp
|
||||||
|
*.bak
|
||||||
|
*.tmp
|
53
.drone.yml
Normal file
53
.drone.yml
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: default
|
||||||
|
|
||||||
|
steps:
|
||||||
|
# Step 1: Install dependencies & build Node.js app
|
||||||
|
- name: install-and-build
|
||||||
|
image: node:20-alpine
|
||||||
|
commands:
|
||||||
|
- echo "Installing dependencies..."
|
||||||
|
- npm ci
|
||||||
|
- echo "Building app..."
|
||||||
|
- npm run build
|
||||||
|
|
||||||
|
# Step 2: Build Docker image with dynamic Git tag
|
||||||
|
- name: build-image
|
||||||
|
image: docker:24
|
||||||
|
environment:
|
||||||
|
DOCKER_HOST: unix:///var/run/docker.sock
|
||||||
|
commands:
|
||||||
|
- IMAGE_TAG=${DRONE_TAG:-latest}
|
||||||
|
- echo "Building Docker image apps/homepage:$IMAGE_TAG ..."
|
||||||
|
- docker build -t apps/homepage:$IMAGE_TAG .
|
||||||
|
|
||||||
|
# Step 3: Stop old container if exists
|
||||||
|
- name: stop-old
|
||||||
|
image: docker:24
|
||||||
|
environment:
|
||||||
|
DOCKER_HOST: unix:///var/run/docker.sock
|
||||||
|
commands:
|
||||||
|
- IMAGE_TAG=${DRONE_TAG:-latest}
|
||||||
|
- echo "Stopping old container..."
|
||||||
|
- docker rm -f homepage || true
|
||||||
|
|
||||||
|
# Step 4: Run container with dynamic tag
|
||||||
|
- name: run-container
|
||||||
|
image: docker:24
|
||||||
|
environment:
|
||||||
|
DOCKER_HOST: unix:///var/run/docker.sock
|
||||||
|
commands:
|
||||||
|
- IMAGE_TAG=${DRONE_TAG:-latest}
|
||||||
|
- echo "Starting container apps/homepage:$IMAGE_TAG ..."
|
||||||
|
- docker run -d \
|
||||||
|
--name homepage \
|
||||||
|
-p 3001:3000 \
|
||||||
|
-e NODE_ENV=production \
|
||||||
|
apps/homepage:$IMAGE_TAG
|
||||||
|
|
||||||
|
# Trigger pipeline on Git tags
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
- tag
|
4
.idea/homepage.iml
generated
4
.idea/homepage.iml
generated
@@ -1,7 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<module type="PYTHON_MODULE" version="4">
|
<module type="PYTHON_MODULE" version="4">
|
||||||
<component name="NewModuleRootManager">
|
<component name="NewModuleRootManager">
|
||||||
<content url="file://$MODULE_DIR$" />
|
<content url="file://$MODULE_DIR$">
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/.react-router" />
|
||||||
|
</content>
|
||||||
<orderEntry type="inheritedJdk" />
|
<orderEntry type="inheritedJdk" />
|
||||||
<orderEntry type="sourceFolder" forTests="false" />
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
</component>
|
</component>
|
||||||
|
33
Dockerfile
Normal file
33
Dockerfile
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
# Stage 1: Build
|
||||||
|
FROM node:20-alpine AS builder
|
||||||
|
|
||||||
|
# Set working directory
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Copy package.json and package-lock.json (or yarn.lock)
|
||||||
|
COPY package*.json ./
|
||||||
|
|
||||||
|
# Install dependencies
|
||||||
|
RUN npm ci
|
||||||
|
|
||||||
|
# Copy the rest of the app
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
# Build the app (React/Next/etc.)
|
||||||
|
RUN npm run build
|
||||||
|
|
||||||
|
# Stage 2: Production image
|
||||||
|
FROM node:20-alpine
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Copy only build output and dependencies
|
||||||
|
COPY --from=builder /app/package*.json ./
|
||||||
|
COPY --from=builder /app/node_modules ./node_modules
|
||||||
|
COPY --from=builder /app/build ./build
|
||||||
|
|
||||||
|
# Expose port
|
||||||
|
EXPOSE 3000
|
||||||
|
|
||||||
|
# Default command
|
||||||
|
CMD ["npm", "start"]
|
@@ -6,70 +6,40 @@ import Link from "@mui/material/Link";
|
|||||||
import Grid from "@mui/material/Grid";
|
import Grid from "@mui/material/Grid";
|
||||||
import Paper from "@mui/material/Paper";
|
import Paper from "@mui/material/Paper";
|
||||||
|
|
||||||
|
|
||||||
export function meta() {
|
export function meta() {
|
||||||
return [
|
return [
|
||||||
{title: "Material UI - React Router example in TypeScript"},
|
{ title: "Aetoskia Hideout" },
|
||||||
{
|
{
|
||||||
name: "description",
|
name: "description",
|
||||||
content:
|
content: "Welcome to Aetoskia's Hideout!",
|
||||||
"Welcome to Material UI - React Router example in TypeScript!",
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
const services = {
|
const services = {
|
||||||
media: [
|
media: [
|
||||||
{
|
{ name: "Jellyseerr", url: "http://jellyseerr.aetoskia.com", desc: "Summon films and series from the digital void.", external: true },
|
||||||
name: "Jellyseerr",
|
{ name: "Sonarr", url: "http://sonarr.aetoskia.com", desc: "Keep the endless chronicles of TV under iron control.", external: true },
|
||||||
url: "http://jellyseerr.aetoskia.com",
|
{ name: "Radarr", url: "http://radarr.aetoskia.com", desc: "Command the legions of cinema, enforce cinematic order.", external: true },
|
||||||
desc: "Request movies & TV shows",
|
{ name: "qBit", url: "http://qbit.aetoskia.com", desc: "Torrent war engine, fetching data across the nether realms.", external: true },
|
||||||
},
|
|
||||||
// {
|
|
||||||
// name: "Ombi",
|
|
||||||
// url: "http://ombi.aetoskia.com",
|
|
||||||
// desc: "Request movies & TV shows",
|
|
||||||
// },
|
|
||||||
{
|
|
||||||
name: "Sonarr",
|
|
||||||
url: "http://sonarr.aetoskia.com",
|
|
||||||
desc: "TV series management",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Radarr",
|
|
||||||
url: "http://radarr.aetoskia.com",
|
|
||||||
desc: "Movie management",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Prowlarr",
|
|
||||||
url: "http://prowlarr.aetoskia.com",
|
|
||||||
desc: "Indexer management",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "qBittorrent",
|
|
||||||
url: "http://qbit.aetoskia.com",
|
|
||||||
desc: "Download client & torrent manager",
|
|
||||||
external: true,
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
core: [
|
codebase: [
|
||||||
{
|
{ name: "Gitea", url: "http://gitea.aetoskia.com", desc: "Forge and safeguard code like a sacred relic.", external: true },
|
||||||
name: "Gitea",
|
{ name: "Registry", url: "http://registry.aetoskia.com", desc: "Monitor core constructs of the digital empire.", external: true },
|
||||||
url: "http://gitea.aetoskia.com",
|
{ name: "Drone", url: "http://drone.aetoskia.com", desc: "Automaton architect, building pipelines of perfection.", external: true },
|
||||||
desc: "Hosted on Core Server",
|
],
|
||||||
external: true,
|
monitoring: [
|
||||||
},
|
{ name: "Portainer", url: "http://portainer.aetoskia.com", desc: "Oversee the fleet of containers with unyielding vigilance.", external: true },
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
// @ts-ignore
|
|
||||||
return (
|
return (
|
||||||
<Container maxWidth="lg">
|
<Container maxWidth="lg">
|
||||||
<Box
|
<Box
|
||||||
sx={{
|
sx={{
|
||||||
minHeight: "100vh",
|
minHeight: "120vh",
|
||||||
backgroundImage: "url('/aetos_sigil.jpg')",
|
backgroundImage: "url('/extended_sigil.png')",
|
||||||
backgroundSize: "cover",
|
backgroundSize: "cover",
|
||||||
backgroundRepeat: "no-repeat",
|
backgroundRepeat: "no-repeat",
|
||||||
backgroundPosition: "center",
|
backgroundPosition: "center",
|
||||||
@@ -77,36 +47,28 @@ export default function Home() {
|
|||||||
flexDirection: "column",
|
flexDirection: "column",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{/* Top section */}
|
|
||||||
<Box sx={{py: 6, textAlign: "center"}}>
|
|
||||||
<Typography variant="h3" sx={{color: "success.main"}}>
|
|
||||||
Aetos Hideout
|
|
||||||
</Typography>
|
|
||||||
</Box>
|
|
||||||
|
|
||||||
{/* Spacer pushes bottom part down */}
|
|
||||||
<Box sx={{ flex: 1 }} />
|
<Box sx={{ flex: 1 }} />
|
||||||
|
|
||||||
{/* Bottom dashboard */}
|
<Box sx={{ height: "60vh", overflowY: "auto", p: 2 }}>
|
||||||
<Container maxWidth="lg" sx={{mb: 4}}>=
|
<Container
|
||||||
|
maxWidth="lg"
|
||||||
|
sx={{ bgcolor: "#1a1a1a", borderRadius: 3, p: 3, boxShadow: 6 }}
|
||||||
|
>
|
||||||
|
{Object.entries(services).map(([sectionName, serviceList]) => (
|
||||||
|
<React.Fragment key={sectionName}>
|
||||||
<Typography
|
<Typography
|
||||||
variant="h5"
|
variant="h5"
|
||||||
align="center"
|
align="center"
|
||||||
sx={{ color: "warning.main", mt: 4, mb: 2 }}
|
sx={{ color: "warning.main", mt: 4, mb: 2 }}
|
||||||
>
|
>
|
||||||
Core Services
|
{sectionName.charAt(0).toUpperCase() + sectionName.slice(1)} Services
|
||||||
</Typography>
|
</Typography>
|
||||||
<Grid container spacing={3} justifyContent="center">
|
<Grid container spacing={3} justifyContent="center">
|
||||||
{services.core.map((s) => (
|
{serviceList.map((s) => (
|
||||||
<Grid item xs={12} sm={6} md={4} key={s.name}>
|
|
||||||
<Paper
|
<Paper
|
||||||
|
key={s.name}
|
||||||
elevation={3}
|
elevation={3}
|
||||||
sx={{
|
sx={{ p: 2, textAlign: "center", bgcolor: "#2d2d2d", borderRadius: 2 }}
|
||||||
p: 2,
|
|
||||||
textAlign: "center",
|
|
||||||
bgcolor: "#2d2d2d",
|
|
||||||
borderRadius: 2,
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
<Link
|
<Link
|
||||||
href={s.url}
|
href={s.url}
|
||||||
@@ -121,47 +83,13 @@ export default function Home() {
|
|||||||
{s.desc}
|
{s.desc}
|
||||||
</Typography>
|
</Typography>
|
||||||
</Paper>
|
</Paper>
|
||||||
</Grid>
|
|
||||||
))}
|
))}
|
||||||
</Grid>
|
</Grid>
|
||||||
|
</React.Fragment>
|
||||||
<Typography
|
|
||||||
variant="h5"
|
|
||||||
align="center"
|
|
||||||
sx={{color: "warning.main", mt: 4, mb: 2}}
|
|
||||||
>
|
|
||||||
Media Services
|
|
||||||
</Typography>
|
|
||||||
<Grid container spacing={3} justifyContent="center">
|
|
||||||
{services.media.map((s) => (
|
|
||||||
<Grid component="div" item xs={12} sm={6} md={4} key={s.name}>
|
|
||||||
<Paper
|
|
||||||
elevation={3}
|
|
||||||
sx={{
|
|
||||||
p: 2,
|
|
||||||
textAlign: "center",
|
|
||||||
bgcolor: "#2d2d2d",
|
|
||||||
borderRadius: 2,
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Link
|
|
||||||
href={s.url}
|
|
||||||
target={s.external ? "_blank" : undefined}
|
|
||||||
rel="noopener"
|
|
||||||
underline="none"
|
|
||||||
sx={{fontSize: 18, fontWeight: "bold", color: "success.main"}}
|
|
||||||
>
|
|
||||||
{s.name}
|
|
||||||
</Link>
|
|
||||||
<Typography variant="body2" sx={{mt: 1, color: "#ccc"}}>
|
|
||||||
{s.desc}
|
|
||||||
</Typography>
|
|
||||||
</Paper>
|
|
||||||
</Grid>
|
|
||||||
))}
|
))}
|
||||||
</Grid>
|
|
||||||
</Container>
|
</Container>
|
||||||
</Box>
|
</Box>
|
||||||
|
</Box>
|
||||||
</Container>
|
</Container>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
13
docker-compose.yaml
Normal file
13
docker-compose.yaml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
services:
|
||||||
|
homepage:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
# network: host
|
||||||
|
container_name: homepage
|
||||||
|
image: apps/homepage:0.0.3
|
||||||
|
ports:
|
||||||
|
- "3001:3000" # map host port 3000 to container
|
||||||
|
environment:
|
||||||
|
NODE_ENV: production
|
||||||
|
restart: unless-stopped
|
BIN
public/extended_sigil.png
Normal file
BIN
public/extended_sigil.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 MiB |
Binary file not shown.
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 1.3 MiB |
BIN
public/no_sigil.png
Normal file
BIN
public/no_sigil.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 MiB |
Reference in New Issue
Block a user