Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/coolify #456

Merged
merged 2 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading