From 24b50d471b19710cf7bd0b52276519fd2b5891c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thea=20Sch=C3=B6bl?= Date: Tue, 14 Mar 2023 17:44:23 +0100 Subject: [PATCH] refactor: add monorepo --- .gitignore | 4 ++++ README.md | 1 + pnpm-workspace.yaml | 6 ++++++ turbo.json | 5 +++++ 4 files changed, 16 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 pnpm-workspace.yaml create mode 100644 turbo.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..6a9a64de --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.idea +.vscode +.turbo +node_modules \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 00000000..a68db00f --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# Open StApps Monorepo \ No newline at end of file diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 00000000..a9afa2c3 --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,6 @@ +packages: + - "backend/*" + - "configuration/*" + - "examples/*" + - "frontend/*" + - "packages/*" \ No newline at end of file diff --git a/turbo.json b/turbo.json new file mode 100644 index 00000000..b9293b87 --- /dev/null +++ b/turbo.json @@ -0,0 +1,5 @@ +{ + "pipeline": { + + } +} \ No newline at end of file