https://github.com/redis-developer/ebook-speed-mern-frontend
https://github.com/redis-developer/ebook-speed-mern-frontend
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/redis-developer/ebook-speed-mern-frontend
- Owner: redis-developer
- Created: 2022-08-31T12:10:54.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-13T13:41:33.000Z (almost 3 years ago)
- Last Synced: 2025-05-08T21:44:20.012Z (10 months ago)
- Language: TypeScript
- Size: 389 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# speed-mern-app-demo-frontend
Speed your MERN app by REDIS
## Manage application
### Start application
```sh
# to start docker app
docker compose up -d
```
Note:
- **Open browser at http://localhost:3000 to view application**
- Can change API connection details or ports by the environment variables in .env file
### Other commands
```sh
# to stop docker app
docker compose down
# to stop & also delete volumes (mongodb & redis data)
docker compose down -v
# to rebuild all images & start
docker compose up -d --build
# to rebuild image of specific service (after any code changes)
docker-compose build --no-cache
# example
docker-compose build --no-cache movie_frontend_service
```