4d01e13a84
* Revert "Revert structured logging 2 (#1240)"
This reverts commit 78ecaeffcb.
* Logging should not be bundled into core shared directory
* making sure observability stuff isnt bundled into frontend
Co-authored-by: Kristaps Fabians Geikins <fabis94@live.com>
20 lines
563 B
Makefile
20 lines
563 B
Makefile
|
|
|
|
build:
|
|
docker build -t preview-service ../.. -f Dockerfile
|
|
|
|
run:
|
|
docker run -it --rm --net=host \
|
|
-e PG_CONNECTION_STRING="postgres://speckle:speckle@localhost/speckle" \
|
|
preview-service
|
|
|
|
run-release:
|
|
docker run -it --rm --net=host \
|
|
-e PG_CONNECTION_STRING="postgres://speckle:speckle@localhost/speckle" \
|
|
speckle/speckle-preview-service:v2.3.3
|
|
|
|
|
|
small:
|
|
docker build -t small-preview-service ../.. -f Dockerfile.small
|
|
docker run -it --rm --net=host -e PG_CONNECTION_STRING="postgres://speckle:speckle@localhost/speckle" small-preview-service bash
|