Commit eda1eeb6 authored by Grant's avatar Grant
Browse files

initial admin/moderation interface

parent a4d30467
Loading
Loading
Loading
Loading
+3946 −931

File changed.

Preview size limit exceeded, changes collapsed.

+2 −1
Original line number Diff line number Diff line
@@ -3,7 +3,8 @@
  "version": "1.0.0",
  "description": "",
  "workspaces": [
    "packages/client-next",
    "packages/admin",
    "packages/client",
    "packages/server",
    "packages/lib"
  ],
+18 −0
Original line number Diff line number Diff line
module.exports = {
  root: true,
  env: { browser: true, es2020: true },
  extends: [
    'eslint:recommended',
    'plugin:@typescript-eslint/recommended',
    'plugin:react-hooks/recommended',
  ],
  ignorePatterns: ['dist', '.eslintrc.cjs'],
  parser: '@typescript-eslint/parser',
  plugins: ['react-refresh'],
  rules: {
    'react-refresh/only-export-components': [
      'warn',
      { allowConstantExport: true },
    ],
  },
}
+24 −0
Original line number Diff line number Diff line
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
+3 −0
Original line number Diff line number Diff line
# Canvas Admin Interface

Heavily based on [nextui-dashboard-template](https://github.com/Siumauricio/nextui-dashboard-template/tree/main)
Loading