https://github.com/cutupdev/erp-solutions
This is repository offering ERP solutions by next.js.
https://github.com/cutupdev/erp-solutions
javascript nextjs typescript
Last synced: about 1 year ago
JSON representation
This is repository offering ERP solutions by next.js.
- Host: GitHub
- URL: https://github.com/cutupdev/erp-solutions
- Owner: cutupdev
- Created: 2024-03-30T08:26:31.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-30T09:45:18.000Z (about 2 years ago)
- Last Synced: 2025-01-21T19:22:35.860Z (over 1 year ago)
- Topics: javascript, nextjs, typescript
- Language: JavaScript
- Homepage: https://wahni.io/
- Size: 5.47 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
1. **Check if you have Node.js installed in your system**
run
```bash
node -v
```
- If it outputs a version number thats <= `18`, we're good to go.
- If it throws an error, it means you dont have Nodejs installed in your system. [Get it from here](https://nodejs.org)
> Bonus: Install `yarn` too for faster libs installation. [Refer this guide](https://classic.yarnpkg.com/lang/en/docs/install/#debian-stable)
2. **Install Dependancies**
- If you prefer Yarn, run
```bash
yarn
```
- If you prefer Npm, run
```bash
npm i
```
3. **Run Dev Server**
- Yarn:
```bash
yarn dev
```
- Npm:
```bash
npm run dev
```