Skip to content

Instantly share code, notes, and snippets.

View enoonan's full-sized avatar

Eileen Noonan enoonan

  • Freelance
  • NYC
View GitHub Profile
@enoonan
enoonan / Dockerfile
Last active June 25, 2025 05:35
pgvector Dockerfile which I'm using on Fly.io
FROM flyio/postgres-flex:17.2
# Install build dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends \
build-essential \
curl \
postgresql-server-dev-all
# Set the pgvector version
@enoonan
enoonan / environment.php
Last active August 29, 2015 13:59
Laravel Env Detection
<?php
// ignore this file in vcs
return 'local';