Skip to content

Commit 39c874a

Browse files
authored
Merge pull request #12 from secus217/main
add new webhook management functionality and email configuration support to the application
2 parents 52546d4 + 4b84ae3 commit 39c874a

57 files changed

Lines changed: 3662 additions & 464 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.development

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,16 @@ API_KEY_PREFIX=ce_dev_
1919
KUBERNETES_NAMESPACE=container-engine-dev
2020

2121
# Domain Configuration
22-
DOMAIN_SUFFIX=vinhomes.co.uk
22+
DOMAIN_SUFFIX=your_domain_suffix
23+
24+
# Email Configuration - Mailtrap
25+
MAILTRAP_SMTP_HOST=your_host
26+
MAILTRAP_SMTP_PORT=587
27+
MAILTRAP_USERNAME=your_mailtrap_username
28+
MAILTRAP_PASSWORD=your_mailtrap_password
29+
EMAIL_FROM=your_email
30+
EMAIL_FROM_NAME=your_app_name
2331

2432
# Logging
2533
RUST_LOG=container_engine=debug,tower_http=debug
26-
KUBECONFIG_PATH=./k8sConfig.yaml
34+
KUBECONFIG_PATH=./k8sConfig.yaml

.env.example

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,17 @@ API_KEY_PREFIX=ce_api_
1818
KUBERNETES_NAMESPACE=container-engine
1919

2020
# Domain Configuration
21-
DOMAIN_SUFFIX=container-engine.app
21+
DOMAIN_SUFFIX=your_domain_suffix
22+
23+
# Email Configuration - Mailtrap Live SMTP
24+
MAILTRAP_SMTP_HOST=your_host
25+
MAILTRAP_SMTP_PORT=587
26+
MAILTRAP_USERNAME=your_mailtrap_username
27+
MAILTRAP_PASSWORD=your_mailtrap_password
28+
EMAIL_FROM=noreply@yourdomain.comapp
29+
EMAIL_FROM_NAME=your_app
30+
31+
2232

2333
# Logging
2434
RUST_LOG=container_engine=debug,tower_http=debug

.sqlx/query-19945d2e23d4e54bcaafd212df71faecd762789418a15e68cedc88ef666fec8d.json

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.sqlx/query-2cbdf5c505a0a7d65eb01c482a4ab9378701e7d675d45e4fcb7404aba853d589.json

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.sqlx/query-32aa79a0a9654fa2e3acbbd0f6ed64c6ea32b916e841115921886c0049ee8958.json

Lines changed: 70 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.sqlx/query-38bba728896ac61542b8279a6b5a2f6740dfd3ac6b9264c5554429824338ccea.json

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.sqlx/query-3f4d708c6810b85421669ada5f45b3a9730d85635ac5f63baa9e197895fd9005.json

Lines changed: 70 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.sqlx/query-5889f23a18bf32671c979a8a18261ab4ca9c7170290effe5f2461cb492c03fd2.json

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.sqlx/query-6291008bd24d8a6f907e71c0040f604f96bdee291cda04d37fddff52d92e92a0.json

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.sqlx/query-6319c10d4f5c165e2e3c5eeec8230922e2d15325d2cee9c73bd90c0be4cd3046.json

Lines changed: 71 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)