mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-09 07:25:19 +02:00
Update README.md
Signed-off-by: Josh Pigford <josh@joshpigford.com>
This commit is contained in:
parent
37f5cb3d99
commit
e05dc6fd24
1 changed files with 51 additions and 0 deletions
51
README.md
51
README.md
|
@ -8,8 +8,59 @@ There's a LOT of work to do to get this functioning, but it should be feasible.
|
||||||
|
|
||||||
The best way to get involved is on [Discord](https://discord.gg/xfysSaSsfN) and in the [Issues](https://github.com/maybe-finance/maybe/issues).
|
The best way to get involved is on [Discord](https://discord.gg/xfysSaSsfN) and in the [Issues](https://github.com/maybe-finance/maybe/issues).
|
||||||
|
|
||||||
|
## Monorepo File Structure Overview
|
||||||
|
|
||||||
|
This repository uses the monorepo management tools from NRWL called `nx`. The NX dev tools come with pre-configured TS, ESLint, Prettier, Jest, Cypress and more, and provide an extensive suite of commands to lint, test, serve, and build applications. [Here's a great 10 minute video](https://nx.dev/l/r/getting-started/intro#10-minute-nx-overview) that walks through what nx can do.
|
||||||
|
|
||||||
|
### Structure
|
||||||
|
|
||||||
|
**Notes**
|
||||||
|
|
||||||
|
Through ESLint, the following rules apply:
|
||||||
|
|
||||||
|
- libs/shared can be imported to any app OR lib
|
||||||
|
- libs/server can be imported to server and workers apps
|
||||||
|
- libs/client can be imported to client app
|
||||||
|
- libs/client/shared can be imported to any libs/client/features
|
||||||
|
- libs/server/shared can be imported to any libs/server/features
|
||||||
|
|
||||||
|
```
|
||||||
|
apps/
|
||||||
|
client/
|
||||||
|
server/
|
||||||
|
workers/
|
||||||
|
libs/
|
||||||
|
design-system/
|
||||||
|
client/
|
||||||
|
src/
|
||||||
|
features/
|
||||||
|
{feature1-name}/
|
||||||
|
{feature2-name}/
|
||||||
|
shared/
|
||||||
|
server/
|
||||||
|
src/
|
||||||
|
features/
|
||||||
|
{feature1-name}/
|
||||||
|
{feature2-name}/
|
||||||
|
shared/
|
||||||
|
shared/
|
||||||
|
src/
|
||||||
|
features/
|
||||||
|
{feature1-name}/
|
||||||
|
{feature2-name}/
|
||||||
|
utils/
|
||||||
|
types/
|
||||||
|
```
|
||||||
|
|
||||||
|
### Decision Tree
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
|
## ⚠️ Everything below is archived from the original repo and we're slowly working to replace/update it.
|
||||||
|
|
||||||
# Quick Start
|
# Quick Start
|
||||||
|
|
||||||
For an overview of this repository, please [see the wiki](https://github.com/maybe-finance/maybe-app/wiki)
|
For an overview of this repository, please [see the wiki](https://github.com/maybe-finance/maybe-app/wiki)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue