This website connects healthcare workers (docs, nurses, specialists, support staff) with volunteers who can provide basic needs during the COVID-19 pandemic response. Please share with anyone you know who needs assistance or can provide it!
This project is the upcoming rebuild of FeedADoc.com, which is currently using Google Sites.
We'd love your help! Please see the project for a prioritized list of issues (tasks).
The below steps assume you've forked and cloned the repo to your local machine.
docker-compose up -d
docker-compose run web rails db:migrate db:create
- Visit http://localhost:3000
-
Use
psql
to create a PG user calledfeedadoc
. (We assume you have postgresql installed, on OS X you can usebrew
to install it or run Postgres.app.)CREATE USER feedadoc WITH SUPERUSER PASSWORD 'password1';
-
Install Ruby v2.7.0 (see
.ruby-version
; also, we recommend rvm to manage ruby versions.) -
Run
bundle
-
Install Yarn (On OS X:
brew install yarn
) -
Run
yarn
-
Run
rails db:create db:migrate
-
In one Terminal window, run
bin/webpack-dev-server
. In a second window, runrails s
. -
Visit http://localhost:3000