Skip to content

Commit

Permalink
chore: remove watermark related code (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
bouassaba authored Jul 10, 2024
1 parent f2ec471 commit f687be6
Show file tree
Hide file tree
Showing 34 changed files with 280 additions and 1,273 deletions.
1 change: 0 additions & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ VOLTASERVE_WEBDAV_PORT=8082
VOLTASERVE_CONVERSION_PORT=8083
VOLTASERVE_LANGUAGE_PORT=8084
VOLTASERVE_MOSAIC_PORT=8085
VOLTASERVE_WATERMARK_PORT=8086

# Infrastructure Ports
VOLTASERVE_POSTGRES_PORT=26257
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<a href="https://youtu.be/Uf3EWb2hDfs?feature=shared">Watch the Demo Video</a>
</p>

Handle massive images with mosaic technology, extract insights from documents, stream large videos, protect documents with permissions and watermarks, preview 3D models. collaborate in real-time.
Handle massive images with mosaic technology, extract insights from documents, stream large videos, protect documents with permissions, preview 3D models. collaborate in real-time.

## Getting Started

Expand Down
1 change: 0 additions & 1 deletion api/.env
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ PUBLIC_UI_URL="http://127.0.0.1:3000"
CONVERSION_URL="http://127.0.0.1:8083"
LANGUAGE_URL="http://127.0.0.1:8084"
MOSAIC_URL="http://127.0.0.1:8085"
WATERMARK_URL="http://127.0.0.1:8086"
POSTGRES_URL="postgresql://[email protected]:26257/voltaserve"

# Security
Expand Down
13 changes: 6 additions & 7 deletions api/client/pipeline_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,12 @@ func NewPipelineClient() *PipelineClient {
}

const (
PipelinePDF = "pdf"
PipelineOffice = "office"
PipelineImage = "image"
PipelineVideo = "video"
PipelineInsights = "insights"
PipelineMosaic = "mosaic"
PipelineWatermark = "watermark"
PipelinePDF = "pdf"
PipelineOffice = "office"
PipelineImage = "image"
PipelineVideo = "video"
PipelineInsights = "insights"
PipelineMosaic = "mosaic"
)

type PipelineRunOptions struct {
Expand Down
104 changes: 0 additions & 104 deletions api/client/watermark_client.go

This file was deleted.

2 changes: 0 additions & 2 deletions api/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ type Config struct {
ConversionURL string
LanguageURL string
MosaicURL string
WatermarkURL string
DatabaseURL string
Search SearchConfig
Redis RedisConfig
Expand Down Expand Up @@ -132,7 +131,6 @@ func readURLs(config *Config) {
config.ConversionURL = os.Getenv("CONVERSION_URL")
config.LanguageURL = os.Getenv("LANGUAGE_URL")
config.MosaicURL = os.Getenv("MOSAIC_URL")
config.WatermarkURL = os.Getenv("WATERMARK_URL")
config.DatabaseURL = os.Getenv("POSTGRES_URL")
}

Expand Down
250 changes: 130 additions & 120 deletions api/docs/index.html

Large diffs are not rendered by default.

Loading

0 comments on commit f687be6

Please sign in to comment.