Skip to content

Commit

Permalink
Fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
simonj2 committed Sep 14, 2022
1 parent a9c89e4 commit 2daefca
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
3 changes: 0 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,10 @@ x-backend-conf: &backend-conf
- POSTGRES_USER
- POSTGRES_PASSWORD
- ROBOTOFF_URL
<<<<<<< HEAD
- EVENTS_URL
- EVENTS_USERNAME
- EVENTS_PASSWORD
=======
- REDIS_URL
>>>>>>> 1e7d429684 (Connect to Redis)
- GOOGLE_CLOUD_VISION_API_KEY
- CROWDIN_PROJECT_IDENTIFIER
- CROWDIN_PROJECT_KEY
Expand Down
4 changes: 1 addition & 3 deletions lib/ProductOpener/Config2_docker.pm
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,14 @@ my $postgres_url = "postgresql://${postgres_user}:${postgres_password}\@${postgr
# enable an in-site robotoff-asker in the product page
$robotoff_url = $ENV{ROBOTOFF_URL};

<<<<<<< HEAD
# Set this to your instance of https://github.com/openfoodfacts/openfoodfacts-events
# enable creating events for some actions (e.g. when a product is edited)
$events_url = $ENV{EVENTS_URL};
$events_username = $ENV{EVENTS_USERNAME};
$events_password = $ENV{EVENTS_PASSWORD};
=======

# Set this to your instance of the search service to enable writes to it
$redis_url = $ENV{REDIS_URL};
>>>>>>> 1e7d429684 (Connect to Redis)

%server_options = (
private_products => $producers_platform, # 1 to make products visible only to the owner (producer platform)
Expand Down
4 changes: 1 addition & 3 deletions lib/ProductOpener/Config2_sample.pm
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,13 @@ $crowdin_project_key = '';
# enable an in-site robotoff-asker in the product page
$robotoff_url = '';

<<<<<<< HEAD
# Set this to your instance of https://github.com/openfoodfacts/openfoodfacts-events
# enable creating events for some actions (e.g. when a product is edited)
$events_url = '';
$events_username = '';
$events_password = '';
=======

$redis_url = '';
>>>>>>> 1e7d429684 (Connect to Redis)

%server_options = (

Expand Down

0 comments on commit 2daefca

Please sign in to comment.