Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yogurt1/ideal-next-starter
Ideal Next.js starter
https://github.com/yogurt1/ideal-next-starter
docker jest nextjs nodejs yarn
Last synced: about 2 months ago
JSON representation
Ideal Next.js starter
- Host: GitHub
- URL: https://github.com/yogurt1/ideal-next-starter
- Owner: yogurt1
- Created: 2019-02-16T12:24:47.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-16T12:33:04.000Z (almost 6 years ago)
- Last Synced: 2024-10-20T17:42:43.724Z (4 months ago)
- Topics: docker, jest, nextjs, nodejs, yarn
- Language: JavaScript
- Size: 98.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ideal-next-starter
Ideal Next.js starter## Features
+ Docker
+ Yarn
+ Jest
+ Next.js## Usage
1. Build image
```sh
docker build -t my-app .
```2. Run app
```sh
docker run -it --rm -p 3000:3000 my-app# On Swarm let use service
docker service create --publish 3000:3000 my-app# Docker Compose file also available
docker-compose up# Docker Stacks supported
docker stack deploy my-app -c ./docker-compose.yml
```3. Open in browser `localhost:3000`