Skip to content

Instantly share code, notes, and snippets.

import { create } from "zustand"
const authStore = create((set) => {
})
// create takes a function iside which you declare variables
@Mayank-kumar001
Mayank-kumar001 / gist:115efd6ea0ecfffc064541008c9d467e
Created April 25, 2025 15:22
Run postgres sql through docker
docker run --name leetLab -e POSTGRES_USER=myuser -e POSTGRES_PASSWORD=password -p 5432:5432 -d postgres