Add .env.example with configuration for database, Redis, security, SMTP, workers, and plugins. Add .gitignore for Python, Node.js, Next.js, Docker volumes, and IDE files. Add MIT License. Update README.md with feature overview, quick start guide, architecture description, plugin system documentation, security details, backup/restore instructions, and developer setup. Add Alembic configuration files and placeholder directories for API, web, worker, and plugin components
18 lines
489 B
TypeScript
18 lines
489 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
import path from "path";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: "jsdom",
|
|
globals: true,
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
"@nexadash/ui": path.resolve(__dirname, "../../packages/ui/src"),
|
|
"@nexadash/shared": path.resolve(__dirname, "../../packages/shared/src"),
|
|
"@nexadash/plugin-sdk": path.resolve(__dirname, "../../packages/plugin-sdk/src"),
|
|
},
|
|
},
|
|
});
|