Go to file
Sam 893244dc16
fix: fix internal server error in POST /members
2023-04-08 01:25:27 +02:00
backend fix: fix internal server error in POST /members 2023-04-08 01:25:27 +02:00
docs docs: add fonts cache header to nginx config 2023-03-27 16:08:38 +02:00
frontend fix: check correct array for fields notice in edit member page 2023-04-08 00:29:56 +02:00
scripts chore: update backend dependencies 2023-04-04 04:11:03 +02:00
.gitignore chore: merge gitignore files 2023-03-20 16:40:36 +01:00
.prettierrc chore: clean up some stuff from the separate frontend repo 2023-03-12 05:05:43 +01:00
LICENSE initial commit 2022-05-02 17:19:37 +02:00
Makefile feat: switch to Go libraries for avatar conversion instead of ImageMagick 2023-03-30 14:44:32 +02:00
README.md docs: slightly improve docs 2023-03-23 10:49:49 +01:00
download-fonts.sh feat(frontend): self host fonts 2023-03-27 15:40:03 +02:00
go.mod chore: update backend dependencies 2023-04-04 04:11:03 +02:00
go.sum chore: update backend dependencies 2023-04-04 04:11:03 +02:00
main.go feat(backend): add data export 2023-03-15 15:24:51 +01:00
openapi.yml docs: start writing OpenAPI definition 2022-12-12 14:18:36 +01:00

README.md

pronouns.cc

A work-in-progress site to share your names, pronouns, and other preferred terms.

Stack

  • API server is written in Go with the chi router
  • Persistent data is stored in PostgreSQL
  • Temporary data is stored in Redis
  • The frontend is written in TypeScript with Svelte, using SvelteKit for server-side rendering
  • Avatars are stored in S3-compatible storage (MinIO for development)

Development

When working on the frontend, run the API and then use pnpm dev in frontend/ for hot reloading.

Note that the Vite dev server assumes that the backend listens on :8080 and MinIO listens on :9000. If these ports differ on your development environment, you must edit vite.config.ts.

Development

Requirements:

  • Go 1.18 or later
  • PostgreSQL (any currently supported version should work)
  • Redis 6.0 or later
  • Node.js (latest version)
  • MinIO if using avatars or data exports (not required otherwise)

Setup

  1. Create a PostgreSQL user and database (the user should own the database)
    For example: create user pronouns with password 'password'; create database pronouns with owner pronouns;
  2. Create a .env file in the repository root containing at least HMAC_KEY, DATABASE_URL, REDIS, PORT, and MINIO_ENDPOINT keys.
  3. Run go run -v . database migrate to initialize the database, then optionally go run -v . database seed to insert a test user.
  4. Run go run -v . web to run the backend.
  5. Create frontend/.env with the following content: PUBLIC_BASE_URL=http://localhost:5173
  6. cd into the frontend directory and run pnpm dev to run the frontend.

License

Copyright (C) 2022  Sam <u1f320>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.