Skip to content

Instantly share code, notes, and snippets.

View alfikridotname's full-sized avatar

ALFIKRI alfikridotname

View GitHub Profile
@linuxkathirvel
linuxkathirvel / postgresql-backup-using-pg_dump.md
Last active December 7, 2023 13:11
How to take backup PosgreSQL using pg_dump with crontab in Linux?

How to take backup PosgreSQL using pg_dump with crontab in Linux?

Find the pg_hba.conf file

sudo su - postgres
psql
SHOW hba_file;

Change the method to 'trust' and save the file

sudo vim /etc/postgresql/11/main/pg_hba.conf
@ahmadshobirin
ahmadshobirin / set locale and timezone indonesia in laravel.md
Last active February 18, 2025 09:50
set locale and timezone indonesia in laravel

Open File App\Providers\AppServiceProvider

Change method boot

use Carbon\Carbon;


public function boot()
{
	config(['app.locale' => 'id']);