https://github.com/tiger-githubb/evely-back-office
https://github.com/tiger-githubb/evely-back-office
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tiger-githubb/evely-back-office
- Owner: tiger-githubb
- Created: 2024-12-02T17:26:14.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-02T20:55:04.000Z (about 1 year ago)
- Last Synced: 2025-02-08T09:24:29.188Z (about 1 year ago)
- Language: TypeScript
- Homepage: https://evely-back-office.vercel.app
- Size: 2.33 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README copy.md
Awesome Lists containing this project
README
# Isomorphic - React.js Next.js Admin Dashboard
This monorepo is powered by [Turborepo](https://turbo.build/), a tool that optimizes build times for monorepo projects. Turborepo leverages your existing package.json scripts and dependencies, making it easy to set up and use.
## Getting Started
System Requirements:
- [Node.js 20.16.0](https://nodejs.org/en) or later.
- [Turborepo 2.1.1](https://turbo.build/repo/docs/getting-started/installation)
- [pnpm - package manager 9.9.0](https://pnpm.io/installation#using-npm) (recommended). We used this version. But you can change it as you want. Learn more about [Turborepo packageManager](https://turbo.build/repo/docs/getting-started/support-policy)
**Tuborepo**: For quick install just run the following command it will install turbo in your system globally.
```bash
npm install -g turbo
```
## Starting development server
#### Setup environment variables in every workspace `.env` file. You can find the `.env.example` file in the root of every workspace.
To start the development server locally run the following commands
```bash
pnpm install
pnpm run dev
```
To build locally and view the local build run the following commands.
```bash
pnpm run build
pnpm run start
```
**You can find more commands in the project root `package.json` file.**
To learn more about these commands checkout our [**Documentation**](https://isomorphic-doc.vercel.app/getting-started/installation)
In your monorepo's root directory, there is a `turbo.json` file. This file allows you to configure custom tasks, set global dependencies, set environment variables, and more. [**Learn More about Turborepo**](https://turbo.build/repo/docs/handbook)
Happy coding! 🚀