https://github.com/yeonv/yz-nextjs
Next.js project with TypeScript - Dockerized + multi-stage
https://github.com/yeonv/yz-nextjs
Last synced: 3 months ago
JSON representation
Next.js project with TypeScript - Dockerized + multi-stage
- Host: GitHub
- URL: https://github.com/yeonv/yz-nextjs
- Owner: YeonV
- Created: 2024-10-21T23:55:43.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-10-31T11:13:23.000Z (7 months ago)
- Last Synced: 2025-01-18T07:27:31.603Z (5 months ago)
- Language: HTML
- Size: 1.24 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NextJS 15 - Dockerized - multi-stages
## [](https://github.com/YeonV) [](https://github.com/YeonV)
New App Starter
---
| | Link |
| ---- | ------------------------------------------------------------------------------------------------------------------------------- |
| Demo | [](https://hithub.com/YeonV/yz-nextws) |### Techs
[](https://reactjs.org/)
[](https://github.com/pmndrs/zustand)
[](mui.com)
[](https://www.typescriptlang.org/)
[](https://eslint.org/)# How To
### Prepare
```sh
git clone https://github.com/YeonV/yz-nextjs
cd yz-nextjs
npm i --force
```### Use
locally
### Start Devmode
```sh
npm run dev
```### Build Production
```sh
npm run run
```### Start Production (after build)
```sh
npm run start
```### Lint
```sh
npm run lint
```### Check Updates
```sh
npm run update
```docker
### via npm
```sh
npm run docker:build-development
npm run docker:start-development
npm run docker:stop-developmentnpm run docker:build-staging
npm run docker:start-staging
npm run docker:stop-stagingnpm run docker:build-production
npm run docker:start-production
npm run docker:stop-production
```### via make
```sh
make build-development
make start-development
make stop-developmentmake build-staging
make start-staging
make stop-stagingmake build-production
make start-production
make stop-production
```