summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2025-04-22fix #197 by running through npm so version env is setGavin Mogan
2025-03-17I'm too tired to debug GHA franklyRaphael Kabo
2025-03-17TestingRaphael Kabo
2025-03-17Add -H parameterRaphael Kabo
2025-03-17Remove RSA specificationRaphael Kabo
2025-03-17Update deploy workflowRaphael Kabo
2025-03-17Merge pull request #195 from wjbolles/fix-guest-emailsRaphael
Fix SMTP auth
2025-03-14Fix SMTP authWalter Bolles
2025-02-12Merge pull request #186 from alifeee/update/installation-docsRaphael
add a bit more info to installation instructions
2025-02-12start locally as `gathio` useralifeee
2025-02-12add clarification notesalifeee
2025-02-12remove weird syntaxalifeee
2025-02-12Merge branch 'main' into update/installation-docsRaphael
2025-02-12Merge pull request #185 from alifeee/update/remove-google-fontsRaphael
remove Google Fonts dependency
2025-02-11Merge branch 'main' into update/remove-google-fontsRaphael
2025-02-11Merge branch 'main' into update/installation-docsRaphael
2025-02-11Merge pull request #189 from lowercasename/instance-informationRaphael
Update docs and Docker Compose config
2025-02-11Merge branch 'main' into instance-informationRaphael
2025-02-11Update docs and Docker Compose configRaphael Kabo
2025-02-11Merge pull request #187 from lowercasename/email-bccsRaphael
Change to BCC for group emailing
2025-02-11Merge remote-tracking branch 'origin/main' into email-bccsRaphael Kabo
2025-02-11Merge branch 'main' into update/installation-docsRaphael
2025-02-11Merge branch 'main' into update/remove-google-fontsRaphael
2025-02-11Merge pull request #188 from lowercasename/update-artifact-actionsRaphael
Upgrade upload-artifact and download-artifact to v4
2025-02-11Upgrade upload-artifact and download-artifact to v4Raphael Kabo
2025-02-11add a bit more info to installation instructionsalifeee
pertinently allowing `pnpm` to be run by anyone
2025-02-11remove Google Fonts dependencyalifeee
...by locally serving the font file `@font-face` rule copied from Google Font URL
2025-01-12change to BCC for group emailingKasanwa Solane Aster Hope (Cassandra de la Cruz-Munoz)
Signed-off-by: Raphael Kabo <raphaelkabo@hey.com>
2024-11-13Merge pull request #177 from ovv/nodemailler-no-authRaphael
nodemailer: Add support for no-auth and fix from address
2024-11-13nodemailer: Add support for no-auth and fix from address for attendee emailsOvv
2024-08-25Merge pull request #172 from andypiper/fix-doc-linksRaphael
Change wiki links to new docs site.
2024-08-24Change wiki links to new docs site.Andy Piper
2024-08-10Merge pull request #167 from lowercasename/rk/deploy-via-dockerRaphael
Switch to deploy via Docker Compose
2024-08-01Merge remote-tracking branch 'origin/main' into rk/deploy-via-dockerRaphael Kabo
2024-08-01Fix workflow nameRaphael Kabo
2024-08-01Switch to deploy via Docker ComposeRaphael Kabo
2024-08-01Merge pull request #166 from lowercasename/rk/ghcrRaphael
Publish container to GHCR
2024-08-01Remove accidentally commited Docker directoryRaphael Kabo
2024-08-01Add GitHub CI files to publish Docker containerRaphael Kabo
2024-07-31Add dist directory to dockerignoreRaphael Kabo
2024-07-31update Docker documentationRaphael Kabo
2024-07-31fix: Docker unhappy with CMDRaphael Kabo
2024-07-27Merge pull request #162 from HybridSarcasm/patch-1Raphael
Docker volume for 'events' folder
2024-07-27Update comments in DockerfileRaphael
2024-07-27Merge branch 'main' into patch-1Raphael
2024-07-27Merge pull request #163 from HybridSarcasm/patch-2Raphael
Allow self-signed certs for SMTP server
2024-07-26Allow self-signed certs for SMTP serverHybridSarcasm
Added "tls:" property of 'rejectUnauthorized: false' to allow program to continue startup when SMTP certificates are not able to be validated against known trusted roots.
2024-07-26Docker volume for 'events folder'HybridSarcasm
Added docker-compose example for mounting a volume for the /app/public/events directory. This can be helpful because rebuilding the docker image per instructions causes user-uploaded images to be lost. Using a persistent volume prevents this data loss when rebuilding.
2024-07-16feat: automatically set end time after start time blurredRaphael Kabo
2024-07-16fix: router bug in activitypub routerRaphael Kabo
We had a middleware applied in the activitypub router which would return 404 for all routes if activitypub wasn't enabled. Unfortunately due to the way Express works, that middleware also applied to every route below that router's routes in the base router chain. Instead, we now apply the middleware specifically to the individual routes in the activitypub file.