https://github.com/fallendeity/rmwebsite
https://github.com/fallendeity/rmwebsite
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fallendeity/rmwebsite
- Owner: FallenDeity
- License: mit
- Created: 2024-01-29T13:12:49.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-10-26T14:06:08.000Z (8 months ago)
- Last Synced: 2025-10-26T16:09:16.847Z (8 months ago)
- Language: TypeScript
- Homepage: https://rm-website-dusky.vercel.app
- Size: 10 MB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Setup
```bash
$ git clone https://github.com/FallenDeity/react-next-tailwind-template
$ cd react-next-tailwind-template
$ npm install
```
# Build
```bash
$ npm run build
```
Internally calls for next to build the project.
# Test
```bash
$ npm run test
```
Internally calls for mocha to run the tests.
# Run
```bash
$ npm run dev
```
Internally calls for next to run the project in development mode.
# Others
- `npm run lint` - Runs eslint on the project.
- `npm run lint:fix` - Runs eslint on the project and fixes the errors.
- `npm run prettier` - Runs prettier on the project.
- `npm run prettier:fix` - Runs prettier on the project and fixes the errors.
> **Note**
> Few more commands are available in `package.json` under `scripts` section.