https://github.com/fallendeity/nextjs-portfolio
https://github.com/fallendeity/nextjs-portfolio
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fallendeity/nextjs-portfolio
- Owner: FallenDeity
- License: mit
- Created: 2023-07-13T19:04:43.000Z (almost 3 years ago)
- Default Branch: dev
- Last Pushed: 2025-08-20T18:14:20.000Z (10 months ago)
- Last Synced: 2025-08-20T20:37:55.610Z (10 months ago)
- Language: TypeScript
- Homepage: https://nextjs-portfolio-fallendeity.vercel.app
- Size: 58 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- 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.