Skip to content

Commit 65c601c

Browse files
authored
Adds temporary error message (#110)
1 parent 50a1516 commit 65c601c

File tree

6 files changed

+30
-0
lines changed

6 files changed

+30
-0
lines changed

start

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
#!/bin/bash
22

3+
echo "We are currently experiencing some issues with refinery."
4+
echo "We are working on it. Sorry, for the inconvenience."
5+
echo "If you pull the repository and this message is still there, please try to pull it at a later time."
6+
exit 1
7+
38
LOCAL_VOLUME_POSTGRES=./postgres-data
49
LOCAL_VOLUME_MINIO=./minio-data
510
LOCAL_VOLUME_QDRANT=./qdrant-storage

start.bat

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
@echo off
22
setlocal enabledelayedexpansion
33

4+
echo "We are currently experiencing some issues with refinery."
5+
echo "We are working on it. Sorry, for the inconvenience."
6+
echo "If you pull the repository and this message is still there, please try to pull it at a later time."
7+
exit 1
8+
49
set LOCAL_VOLUME_POSTGRES=".\postgres-data"
510
set LOCAL_VOLUME_MINIO=".\minio-data"
611
set LOCAL_VOLUME_QDRANT=".\qdrant-storage"

stop

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
#!/bin/bash
22

3+
echo "We are currently experiencing some issues with refinery."
4+
echo "We are working on it. Sorry, for the inconvenience."
5+
echo "If you pull the repository and this message is still there, please try to pull it at a later time."
6+
exit 1
7+
38
docker-compose -f refinery/docker-compose.yml down --remove-orphans

stop.bat

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
@echo off
22

3+
echo "We are currently experiencing some issues with refinery."
4+
echo "We are working on it. Sorry, for the inconvenience."
5+
echo "If you pull the repository and this message is still there, please try to pull it at a later time."
6+
exit 1
7+
38
docker-compose -f refinery\docker-compose.yml down --remove-orphans
49
if "%1" neq "update" pause

update

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
#!/bin/bash
22

3+
echo "We are currently experiencing some issues with refinery."
4+
echo "We are working on it. Sorry, for the inconvenience."
5+
echo "If you pull the repository and this message is still there, please try to pull it at a later time."
6+
exit 1
7+
38
echo "Checking refinery installation..."
49
if test -f "./refinery/docker-compose.yml"; then
510
echo "Refinery is installed."

update.bat

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
@echo off
22
setlocal enabledelayedexpansion
33

4+
echo "We are currently experiencing some issues with refinery."
5+
echo "We are working on it. Sorry, for the inconvenience."
6+
echo "If you pull the repository and this message is still there, please try to pull it at a later time."
7+
exit 1
8+
49
echo Checking refinery installation...
510
if exist "%~dp0\refinery\docker-compose.yml" (
611
echo Refinery is installed.

0 commit comments

Comments
 (0)