Initialize Aidoit v0.1 monorepo
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import "@aidoit/ui/styles.css";
|
||||
|
||||
export const metadata = {
|
||||
title: "Aidoit MSP",
|
||||
description: "Infrastructure management workspace",
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{ children: React.ReactNode }>) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body>{children}</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
export default function MspHomePage() {
|
||||
return (
|
||||
<main style={{ padding: "48px", maxWidth: "1000px", margin: "0 auto" }}>
|
||||
<p style={{ color: "var(--accent)", fontWeight: 800 }}>AIDOIT MSP</p>
|
||||
<h1>Infrastructure workspace</h1>
|
||||
<p style={{ color: "var(--muted)" }}>
|
||||
VPS, Proxmox, Docker, LXC, monitoring, backups and deployments will live here.
|
||||
</p>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import type { NextConfig } from "next";
|
||||
|
||||
const config: NextConfig = {
|
||||
output: "standalone",
|
||||
transpilePackages: ["@aidoit/ui", "@aidoit/contracts", "@aidoit/sdk"],
|
||||
};
|
||||
|
||||
export default config;
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "@aidoit/msp",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "next dev --port 3001",
|
||||
"build": "next build",
|
||||
"start": "next start --port 3001",
|
||||
"lint": "next lint",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"test": "echo \"No MSP tests yet\""
|
||||
},
|
||||
"dependencies": {
|
||||
"@aidoit/contracts": "workspace:*",
|
||||
"@aidoit/sdk": "workspace:*",
|
||||
"@aidoit/ui": "workspace:*",
|
||||
"next": "^15.2.0",
|
||||
"react": "^19.0.0",
|
||||
"react-dom": "^19.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@aidoit/config": "workspace:*",
|
||||
"@types/node": "^22.0.0",
|
||||
"@types/react": "^19.0.0",
|
||||
"@types/react-dom": "^19.0.0",
|
||||
"typescript": "^5.8.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"extends": "@aidoit/config/nextjs.json",
|
||||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
||||
"exclude": ["node_modules"]
|
||||
}
|
||||
Reference in New Issue
Block a user