Whoever needs, we are nearby to help.
- With increasing demand in senior care, we aim to develop a platform offering peer-to-peer in-home care service.
- Our system will be able to match care-seeker and provider according to their locations and preferences.
https://nearby-deepmining.herokuapp.com/
- python 3 (runtime.txt)
- virtualenvwrapper
- django (requirements.txt)
- node.js
brew install node
- yarn
brew install yarn
- postgresql
brew install postgresql
- heroku
brew tap heroku/brew && brew install heroku
git clone https://github.com/YIWEI-CHEN/nearby/ nearby
cd nearby
mkvirtualenv nearby
(workon nearby
)LDFLAGS='-L/usr/local/lib -L/usr/local/opt/openssl/lib -L/usr/local/opt/readline/lib' pip install psycopg2
pip install -r requirements.txt
yarn install
yarn build
python manage.py migrate
python manage.py runserver
(openlocalhost:8000
)- or
yarn start
(openlocalhost:3000
)
heroku login
heroku create <Your App Name>
heroku buildpacks:add --index 1 heroku/nodejs
heroku buildpacks:add --index 2 heroku/python
heroku addons:create heroku-postgresql:hobby-dev
- make sure you commit all changes by
git commit -am "msg"
git push heroku master
(git push heroku HEAD:master
)