feat(web): add local Den dev stack (#855)

* feat(web): add local Den dev stack

* fix(web): stabilize mobile Den worker cards

* fix(web): default empty Den state to new worker

* Add Google auth to Den signup (#847)

* feat(den): add google auth provider

* feat(web): add social signup buttons for den

---------

Co-authored-by: jcllobet <jcllobet@users.noreply.github.com>

---------

Co-authored-by: Jan <jc2897@cornell.edu>
Co-authored-by: jcllobet <jcllobet@users.noreply.github.com>
This commit is contained in:
Omar McAdam
2026-03-12 11:27:34 -07:00
committed by GitHub
parent 8011579c8a
commit f96b50a1ef
5 changed files with 1008 additions and 689 deletions

View File

@@ -0,0 +1,20 @@
services:
mysql:
image: mysql:8.4
container_name: openwork-web-local-mysql
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: openwork_den
healthcheck:
test: ["CMD-SHELL", "mysqladmin ping -h 127.0.0.1 -ppassword --silent"]
interval: 5s
timeout: 5s
retries: 30
start_period: 10s
volumes:
- openwork-web-local-mysql-data:/var/lib/mysql
volumes:
openwork-web-local-mysql-data: