diff options
Diffstat (limited to 'docs/versioned_docs/version-v0.17.0/07-Development/02-directories.md')
| -rw-r--r-- | docs/versioned_docs/version-v0.17.0/07-Development/02-directories.md | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/docs/versioned_docs/version-v0.17.0/07-Development/02-directories.md b/docs/versioned_docs/version-v0.17.0/07-Development/02-directories.md new file mode 100644 index 00000000..54552402 --- /dev/null +++ b/docs/versioned_docs/version-v0.17.0/07-Development/02-directories.md @@ -0,0 +1,28 @@ +# Directory Structure + +## Apps + +| Directory | Description | +| ------------------------ | ------------------------------------------------------ | +| `apps/web` | The main web app | +| `apps/workers` | The background workers logic | +| `apps/mobile` | The react native based mobile app | +| `apps/browser-extension` | The browser extension | +| `apps/landing` | The landing page of [hoarder.app](https://hoarder.app) | + +## Shared Packages + +| Directory | Description | +| ----------------- | ---------------------------------------------------------------------------- | +| `packages/db` | The database schema and migrations | +| `packages/trpc` | Where most of the business logic lies built as TRPC routes | +| `packages/shared` | Some shared code between the different apps (e.g. loggers, configs, assetdb) | + +## Toolings + +| Directory | Description | +| -------------------- | ----------------------- | +| `tooling/typescript` | The shared tsconfigs | +| `tooling/eslint` | ESlint configs | +| `tooling/prettier` | Prettier configs | +| `tooling/tailwind` | Shared tailwind configs | |
