Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1.01 KB

README.md

File metadata and controls

40 lines (26 loc) · 1.01 KB

Log Detective website

Production instance: http://logdetective.com

DEMO

Video

Development

Easily run on your machine:

docker-compose up -d

See README files for frontend and backend:

To be able to use parts of the website communicating with logdetective server you need to specify server url. To specify server url you need to add SERVER_URL variable into the docker-compose.yaml.

Similar to this:

...
services:
  backend:
    ...
    environment:
      - SERVER_URL=http://192.168.0.1:8080

If you want to also run the logdetective server locally use docker compose on the logdetective repository. And specify your local IP ("localhost" or 127.0.0.1 can't be used because of container networking).

Deployment

See openshift/README