Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
3e40cb0
Refactor namespace in ResolveRequestAction.php
joowdx Sep 7, 2024
8915cd5
Force https scheme in production
joowdx Sep 7, 2024
63e0007
Install laravel octane
joowdx Sep 7, 2024
2ea7acc
Disable spa
joowdx Sep 7, 2024
c0d7ba4
Initial release (#59)
joowdx Mar 23, 2025
ddd3ef4
filament upgrade v3 to v4
MrckJd Sep 15, 2025
42f7ded
Filament upgrade v3 to v4
MrckJd Sep 15, 2025
6eb8b53
Revert "filament upgrade v3 to v4"
MrckJd Sep 15, 2025
0a523cc
Merge pull request #63 from eeneg/revert-62-upgrade-to-v4
MrckJd Sep 15, 2025
b1830df
feat: Implement feedback system with QR code generation and Tailwind …
MrckJd Oct 4, 2025
8ae4ede
feat: Add feedback form and view pages with responsive design
MrckJd Oct 28, 2025
c442380
feat: Update Dockerfile to include Google Chrome and Urbanist font in…
MrckJd Oct 28, 2025
43ecde4
Refactor feedback generation and improve PDF handling
MrckJd Nov 19, 2025
aa8b3ea
Merge pull request #1 from MrckJd/CSM
MrckJd Nov 24, 2025
4edc017
feat: Add reinstated status to ActionStatus enum and update related m…
MrckJd Nov 25, 2025
a2b9ebc
Merge pull request #2 from MrckJd/CSM
MrckJd Nov 25, 2025
d9b4eef
Add standard_type and service_type columns to categories table
MrckJd Nov 26, 2025
9c20a40
Merge pull request #3 from MrckJd/CSM
MrckJd Nov 26, 2025
b86a2b6
Implement attachment display with preview and download functionality
MrckJd Nov 26, 2025
9d8515e
Merge pull request #4 from MrckJd
MrckJd Nov 26, 2025
cb699bc
Refactor ActionStatus cases and update related logic to use 'REPLIED'…
MrckJd Nov 26, 2025
557fa87
Merge pull request #5 from MrckJd/Bug-Fixes
MrckJd Nov 26, 2025
cc8da68
Refactor CSS imports, remove unused Pusher and Echo code, and update …
MrckJd Dec 1, 2025
a004007
Merge pull request #6 from MrckJd/merge
MrckJd Dec 1, 2025
3671941
Automate Citizen Charter Survey Form Options Selection
MrckJd Dec 3, 2025
dc10af7
feat: Implement dynamic SQD questions and options using enums
MrckJd Dec 3, 2025
3098db6
Merge pull request #7 from MrckJd/SQD-Options
MrckJd Dec 3, 2025
160ccf2
Merge pull request #8 from MrckJd/Cititzen-Charter-Automation
MrckJd Dec 3, 2025
131569d
Make feedback fields required for improved data collection
MrckJd Dec 4, 2025
10944e1
feat: Add Municipality and Barangay resources with migration and sync…
MrckJd Dec 10, 2025
3343f0c
feat: Enhance QR code functionality and update dependencies for impro…
MrckJd Dec 15, 2025
c4707ba
feat: Add Laravel Horizon support and update related configurations
MrckJd Dec 17, 2025
3bf92c0
fix: Update .gitignore file permissions to ensure proper access
MrckJd Dec 17, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ trim_trailing_whitespace = false
indent_size = 2

[docker-compose.yml]
indent_size = 4
indent_size = 2
78 changes: 51 additions & 27 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,41 +1,60 @@
APP_NAME=Laravel
APP_NAME=Helpdesk
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_TIMEZONE=Asia/Manila
APP_URL=http://localhost
APP_SERVICE=ticketing
APP_SERVICE=helpdesk

APP_LOCALE=en
APP_FALLBACK_LOCALE=en
APP_FAKER_LOCALE=en_US

APP_MAINTENANCE_DRIVER=file
# APP_MAINTENANCE_STORE=database

PHP_CLI_SERVER_WORKERS=4

BCRYPT_ROUNDS=12

LOG_CHANNEL=stack
LOG_STACK=single
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug

DB_CONNECTION=pgsql
DB_HOST=pgsql
DB_PORT=5432
DB_DATABASE=ticket
DB_USERNAME=tixer
DB_PASSWORD=rexit
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_DATABASE=helpdesk
DB_USERNAME=root
DB_PASSWORD=

BROADCAST_DRIVER=log
CACHE_DRIVER=file
FILESYSTEM_DISK=local
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120
SESSION_ENCRYPT=false
SESSION_PATH=/
SESSION_DOMAIN=null

BROADCAST_CONNECTION=log
FILESYSTEM_DISK=local
QUEUE_CONNECTION=database

CACHE_STORE=database
CACHE_PREFIX=

MEMCACHED_HOST=127.0.0.1

REDIS_CLIENT=phpredis
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379

MAIL_MAILER=smtp
MAIL_SCHEME=null
MAIL_HOST=mailpit
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="hello@example.com"
MAIL_FROM_ADDRESS="support@local.dev"
MAIL_FROM_NAME="${APP_NAME}"

AWS_ACCESS_KEY_ID=
Expand All @@ -44,17 +63,22 @@ AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=
AWS_USE_PATH_STYLE_ENDPOINT=false

PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_HOST=
PUSHER_PORT=443
PUSHER_SCHEME=https
PUSHER_APP_CLUSTER=mt1

VITE_APP_NAME="${APP_NAME}"
VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
VITE_PUSHER_HOST="${PUSHER_HOST}"
VITE_PUSHER_PORT="${PUSHER_PORT}"
VITE_PUSHER_SCHEME="${PUSHER_SCHEME}"
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

REVERB_APP_ID=
REVERB_APP_KEY=
REVERB_APP_SECRET=
REVERB_HOST="localhost"
REVERB_PORT=8080
REVERB_SCHEME=http

VITE_REVERB_APP_KEY="${REVERB_APP_KEY}"
VITE_REVERB_HOST="${REVERB_HOST}"
VITE_REVERB_PORT="${REVERB_PORT}"
VITE_REVERB_SCHEME="${REVERB_SCHEME}"
VITE_FORWARD_REVERB_PORT="${VITE_REVERB_PORT:-8080}"

SUPERVISOR_PHP_COMMAND="/usr/bin/php -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=${APP_PORT:-80}"

CLAMAV_PREFERRED_SOCKET=tcp_socket
CLAMAV_TCP_SOCKET=tcp://clamav:3310
6 changes: 6 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,9 @@
/.github export-ignore
CHANGELOG.md export-ignore
.styleci.yml export-ignore

*.sh text eol=lf

*.log export-ignore
*.tmp export-ignore
*.swp export-ignore
Loading