-
-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: setup karrio-insiders and karrio-platform as submodules
- Loading branch information
Showing
171 changed files
with
2,740 additions
and
193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
[submodule "insiders"] | ||
path = ee/insiders | ||
url = [email protected]:karrioapi/karrio-insiders.git | ||
branch = karrio-2024.12-rc1 | ||
path = ee/insiders | ||
url = [email protected]:karrioapi/karrio-insiders.git | ||
[submodule "ee/platform"] | ||
path = ee/platform | ||
url = [email protected]:karrioapi/karrio-platform.git | ||
path = ee/platform | ||
url = [email protected]:karrioapi/karrio-platform.git |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"name": "📦 Karrio (Root)", | ||
"path": ".." | ||
}, | ||
{ | ||
"name": "🔒 Karrio Insiders", | ||
"path": "../ee/insiders" | ||
}, | ||
{ | ||
"name": "🏢 Karrio Platform", | ||
"path": "../ee/platform" | ||
} | ||
], | ||
"settings": { | ||
"files.exclude": { | ||
"**/node_modules": true, | ||
"**/__pycache__": true, | ||
"**/*.pyc": true | ||
}, | ||
"search.exclude": { | ||
"**/node_modules": true, | ||
"**/bower_components": true, | ||
"**/*.code-search": true | ||
}, | ||
"editor.formatOnPaste": true, | ||
"python.terminal.activateEnvInCurrentTerminal": true, | ||
"editor.formatOnSave": true, | ||
"python.defaultInterpreterPath": "../.venv/karrio", | ||
"files.associations": { | ||
"**/*.html": "html", | ||
"**/templates/**/*.html": "django-html", | ||
"**/templates/**/*": "django-txt", | ||
"**/requirements{/**,*}.{txt,in}": "pip-requirements" | ||
}, | ||
"python.analysis.autoImportCompletions": true, | ||
}, | ||
"extensions": { | ||
"recommendations": [ | ||
"ms-python.python", | ||
"dbaeumer.vscode-eslint", | ||
"esbenp.prettier-vscode", | ||
"eamodio.gitlens", | ||
"github.copilot" | ||
] | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
#!/usr/bin/env bash | ||
|
||
echo building image karrio/dashboard:$1 ... | ||
docker build \ | ||
--no-cache \ | ||
-t karrio/dashboard:$1 \ | ||
--build-arg VERSION=$1 \ | ||
-f ./docker/dashboard/Dockerfile . | ||
KARRIO_IMAGE=${KARRIO_IMAGE:-"karrio/dashboard"} | ||
|
||
echo building image ${KARRIO_IMAGE}:${TAG} ... | ||
|
||
docker build -t ${KARRIO_IMAGE}:${TAG} \ | ||
--no-cache \ | ||
--build-arg VERSION=$1 \ | ||
-f ./docker/dashboard/Dockerfile \ | ||
. "${@:2}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Source environment variables | ||
source "bin/_env" | ||
|
||
echo 'building insiders server image...' | ||
docker build -t ghcr.io/karrioapi/server:$1 \ | ||
-f "${ROOT}/docker/insiders/Dockerfile" \ | ||
--no-cache \ | ||
"${ROOT}" \ | ||
"${@:2}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/usr/bin/env bash | ||
|
||
echo '> Building custom nginx image...' | ||
docker build -f "docker/nginx/Dockerfile" \ | ||
-t ghcr.io/karrioapi/nginx:$1 \ | ||
--no-cache \ | ||
./docker/nginx "${@:2}" |
Oops, something went wrong.