dependabot[bot] 7c2e3dba20
chore(deps): bump actions/checkout from 4.1.1 to 4.1.2 (#5390)
1 year ago
..
README.txt rename filer2 to filer 5 years ago
postgres_sql_gen.go move to https://github.com/seaweedfs/seaweedfs 3 years ago
postgres_store.go Allow postgresql to use standard environment variables for connection (#3413) 3 years ago

README.txt


1. create "seaweedfs" database

export PGHOME=/Library/PostgreSQL/10
$PGHOME/bin/createdb --username=postgres --password seaweedfs

2. create "filemeta" table
$PGHOME/bin/psql --username=postgres --password seaweedfs

CREATE TABLE IF NOT EXISTS filemeta (
dirhash BIGINT,
name VARCHAR(65535),
directory VARCHAR(65535),
meta bytea,
PRIMARY KEY (dirhash, name)
);