Skip to content

Instantly share code, notes, and snippets.

View ozbeksu's full-sized avatar
🏠
Working from home

ozbeksu

🏠
Working from home
View GitHub Profile
@ozbeksu
ozbeksu / guide.md
Created May 27, 2023 15:16
postgres installation guide for db upgrade

start docker

docker compose -f ubuntu.yaml up -d

go into container

docker exec -ti ubuntu bash
@ozbeksu
ozbeksu / ubuntu.yaml
Created May 27, 2023 15:07
docker-compose file for ubuntu
version: '3.7'
services:
ubuntu:
container_name: ubuntu
image: ubuntu:latest
hostname: ubuntu
tty: true
volumes:
- ./dump:/dump:ro
@ozbeksu
ozbeksu / LinkBlock.ts
Last active February 27, 2023 00:42
PayloadCMS Revursive Block
import {Block} from 'payload/types';
const createRecursiveLinksBlock = (current = 0, maxDepth = 3): Block => {
if (current < maxDepth - 1) {
current++;
return {
slug: `Level ${current}`,
fields: [
{
name: 'name',