Skip to content

Commit

Permalink
Merge pull request #456 from jesusantguerrero/feat/coolify
Browse files Browse the repository at this point in the history
Feat/coolify
  • Loading branch information
jesusantguerrero authored Sep 12, 2024
2 parents 16967ad + 6e9dc72 commit 386b01b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Caddyfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}

# The domain name of your server
localhost {
{$SERVER_NAME:localhost} {
root * public/
encode zstd gzip
php_server {
Expand Down
2 changes: 1 addition & 1 deletion Caddyfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}

# The domain name of your server
localhost {
{$SERVER_NAME:localhost} {
# Set the webroot to the public/ dir
root * public/
# Enable compression (optional)
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.coolify.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.7"
services:
web:
build:
Expand All @@ -16,6 +15,7 @@ services:
networks:
- loger
environment:
server_name: ${SERVER_NAME:-test.apps.neatlancer.com}, php:80
DEBUG: "debug"
# Change the following value if you know how it works.
# MERCURE_TRANSPORT_URL: "bolt://mercure.db"
Expand All @@ -26,7 +26,7 @@ services:
cors_origins "*"
anonymous
ports:
- "80:3000"
- "3000:80"
networks:
loger:
external: true
driver: bridge
2 changes: 1 addition & 1 deletion resources/js/Components/board/ItemModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -402,13 +402,13 @@ h1 {
.form-cell {
.item-group-cell {
@apply border-2 border-gray-200 px-0;
height: 37px;
span {
height: 100%;
display: flex;
align-items: center;
}
height: 37px;
}
}
Expand Down
1 change: 0 additions & 1 deletion resources/js/Pages/Finance/Account.vue
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ const setPaymentBill = (transaction: ITransaction) => {
openModal(
{ data:{
documents: [transaction],
transaction: transaction,
resourceId: transaction.id,
title: `Payment of ${transaction.name}`,
defaultConcept: `Payment of ${transaction.name}`,
Expand Down

0 comments on commit 386b01b

Please sign in to comment.