Skip to content

Instantly share code, notes, and snippets.

View andersoninthecode's full-sized avatar

Anderson Santana andersoninthecode

View GitHub Profile
@andersoninthecode
andersoninthecode / tailwindcss_with_fasthtml.py
Last active September 21, 2024 17:21
Tailwindcss with Fasthtml
from fasthtml.common import *
app, rt = fast_app(
live=True,
pico=False,
hdrs=(
Meta(charset="UTF-8"),
Meta(name="viewport", content="width=device-width, initial-scale=1.0"),
Script(src="https://cdn.tailwindcss.com"),
)
@andersoninthecode
andersoninthecode / postges_Spring_config.md
Last active October 7, 2025 13:45
Configurando o postgres no Sprint Boot

Configurando o Postgres no Spring Boot

Docker Compose

services:
  postgres-db:
    image: postgres:17-alpine
    restart: always
    environment:
      POSTGRES_DB: postgres
 POSTGRES_USER: postgres