├── .dockerignore ├── .editorconfig ├── .eslintrc.json ├── .github └── workflows │ └── docker-publish.yml ├── .gitignore ├── .idea ├── .gitignore ├── homelab-inventory.iml ├── inspectionProfiles │ └── Project_Default.xml ├── modules.xml └── vcs.xml ├── .prettierignore ├── .prettierrc.json ├── .tool-versions ├── Dockerfile ├── LICENSE ├── README.md ├── components ├── Asset.tsx ├── AssetCard.tsx └── Spinner.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── api │ └── print │ │ └── [id].ts ├── assets │ └── [id].tsx ├── checkin.tsx ├── checkout.tsx ├── index.tsx ├── new.tsx └── search.tsx ├── postcss.config.js ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json ├── utils ├── supabase.ts └── types.ts └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/homelab-inventory.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/.idea/homelab-inventory.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore artifacts: 2 | build 3 | coverage 4 | .next 5 | node_modules -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 16.14.2 2 | yarn 1.22.18 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/README.md -------------------------------------------------------------------------------- /components/Asset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/components/Asset.tsx -------------------------------------------------------------------------------- /components/AssetCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/components/AssetCard.tsx -------------------------------------------------------------------------------- /components/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/components/Spinner.tsx -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/api/print/[id].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/pages/api/print/[id].ts -------------------------------------------------------------------------------- /pages/assets/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/pages/assets/[id].tsx -------------------------------------------------------------------------------- /pages/checkin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/pages/checkin.tsx -------------------------------------------------------------------------------- /pages/checkout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/pages/checkout.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/pages/new.tsx -------------------------------------------------------------------------------- /pages/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/pages/search.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/postcss.config.js -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/utils/supabase.ts -------------------------------------------------------------------------------- /utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/utils/types.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessamerrill/homelab-inventory/HEAD/yarn.lock --------------------------------------------------------------------------------