Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikededo/clean-frontend
https://github.com/mikededo/clean-frontend
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mikededo/clean-frontend
- Owner: mikededo
- Created: 2023-03-10T16:48:45.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-09T08:24:23.000Z (10 months ago)
- Last Synced: 2024-10-30T00:07:49.388Z (about 2 months ago)
- Language: TypeScript
- Size: 85 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Template example
## Running the project
1. Make sure you have installed `node` and `yarn` (using `volta` is highly
recommended).```sh
$ node -v
v18.14.0
$ yarn -v
v1.22.19
```2. Install all the dependencies. In the **root** of the application run:
```sh
yarn
```3. Start the "mock" server from the root of the project. Small server that is
executed using `json-server`:```sh
yarn start:server
```4. Start all the applications (i.e. the frontends):
```sh
yarn dev
```> We can run all the applications using this simple command thanks to turborepo,
> which is a tool developed by Vercel that simplifies the management of
> monorepos.To make sure that you do not come across any issue, make sure that **you are not
opening the application on `localhost:` but in `127.0.0.1:`.
Otherwise, you may come across some CORS issues.