https://github.com/daostack/igloo
https://github.com/daostack/igloo
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/daostack/igloo
- Owner: daostack
- Created: 2022-11-13T17:11:15.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-12T13:36:27.000Z (over 3 years ago)
- Last Synced: 2025-09-19T06:58:23.764Z (9 months ago)
- Language: TypeScript
- Size: 1.75 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Monorepo for iGloo
There is a `core` package that is imported by both the `backend` and the `frontend`. The `core` package is linked to the apps using yarn workspaces.
To install dependencies and link them use
```
yarn install
```
Then build the core package locally using
```
yarn build
```
You then need to run the DB using
```
yarn up
```
And prepare the DB scheme using
```
yarn migrate
```
Then you can run the frontend and the backend with
```
yarn start-test-core
```