Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mzogheib/hippo
https://github.com/mzogheib/hippo
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mzogheib/hippo
- Owner: mzogheib
- Created: 2023-10-29T06:44:48.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-15T07:16:39.000Z (10 months ago)
- Last Synced: 2024-03-15T08:27:21.117Z (10 months ago)
- Language: TypeScript
- Size: 371 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hippo 🦛
Adventures in multi-app development.
## 📜 Contents
This project was created with [Turborepo](https://turbo.build/) and includes the following:
### Apps
- `rwa`: A [Next.js](https://nextjs.org/) app
- `spa`: A [React](https://react.dev/) app### APIs
- `profile`: An [Express](https://expressjs.com/) API to fetch user profile data
### Packages
- `eslint-config-custom`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`)
- `profile-service-sdk`: A library for interacting with the `profile-service` API
- `tsconfig`: `tsconfig.json`s used throughout the monorepo
- `ui-components`: A library of React UI components that can be used by the appsEach package/app is 100% [TypeScript](https://www.typescriptlang.org/).
## 📥 Installation
1. Install [`pnpm`](https://pnpm.io/)
2. Clone the repo
3. Install from the root directory```sh
cd hippo
pnpm i
```## 🛠️ Usage
### Build
To build all apps and packages, run the following command:
```sh
cd hippo
pnpm build
```### Develop
To develop all apps and packages, run the following command:
```sh
cd hippo
pnpm dev
```