https://github.com/kir-dev/mmmk-web
https://github.com/kir-dev/mmmk-web
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kir-dev/mmmk-web
- Owner: kir-dev
- Created: 2024-11-09T17:51:42.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-01-22T18:01:47.000Z (5 months ago)
- Last Synced: 2026-01-23T09:49:55.045Z (5 months ago)
- Language: TypeScript
- Homepage: https://mmmk-web-frontend.vercel.app
- Size: 1.16 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NestJS + NextJS Starter Project by Kir-Dev
This is a starter project for a fullstack application using NestJS and NextJS.
It includes a basic setup for a NestJS as backend and a NextJS as frontend,
including shadcn/ui, ESLint, Prettier, and GitHub Actions.
## Getting Started
### Prerequisites
- Node.js 20
- Yarn 1.22
### Installation
You only need to install dependencies in the root directory.
```bash
yarn install
```
### Linter and Formatter Configuration
It is a must to use ESLint and Prettier in this project.
Set up ESLint and Prettier in your IDE and check `fix on save` or `format on save` options.
You can run the following commands to check linting and formatting issues.
```bash
yarn lint
# or
yarn lint:fix
```
```bash
yarn format:check
# or
yarn format
```
### Development
You can run the backend and frontend separately.
```bash
yarn start:backend # Starts on http://localhost:3001
```
```bash
yarn start:frontend # Starts on http://localhost:3000
```
### After Development
You can build the frontend and run the application.
```bash
yarn build:frontend
```
Or build the backend.
```bash
yarn build:backend
```
There are recommended GitHub Actions workflows for this setup, which will fail if one of the following commands fails:
```bash
yarn lint
```
```bash
yarn format:check
```
```bash
yarn build:backend
```
## Happy Coding!