https://github.com/nuclearredeye/editor-reverse-proxy
Minimal reverse proxy for running libero editor locally
https://github.com/nuclearredeye/editor-reverse-proxy
Last synced: 4 months ago
JSON representation
Minimal reverse proxy for running libero editor locally
- Host: GitHub
- URL: https://github.com/nuclearredeye/editor-reverse-proxy
- Owner: NuclearRedeye
- Created: 2020-10-08T11:37:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-10T17:15:34.000Z (over 5 years ago)
- Last Synced: 2025-08-11T09:33:28.253Z (10 months ago)
- Language: Dockerfile
- Size: 1.99 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# editor-reverse-proxy
Repo that can be used to run a local instance of the Libero Editor backend and client
# Usage
Build local versions of the other containers...
```
cd /path/to/editor-client
npm run build
docker build . -t editor-client:local --no-cache
cd /path/to/editor-article-store
npm run build
docker build . -t editor-article-store:local --no-cache
```
Build the local gateway container...
```
docker build . -t editor-reverse-proxy:local
```
Then start the whole stack using docker-compose...
```
docker-compose up
```