Skip to content

Latest commit

 

History

History
29 lines (16 loc) · 673 Bytes

README.md

File metadata and controls

29 lines (16 loc) · 673 Bytes

Community Wishlist

Have something to give? Find a good home for it. Need something? Ask for it from your community.

Community Wishlist helps match those with items to share with those who need those items.

Requirements

For the backend server, you'll need Python3 and pipenv. You can get the rest of the dependencies with:

pipenv install

To activate this project's virtualenv, run

pipenv shell

Alternatively, run a command inside the virtualenv with

pipenv run

To add new dependencies to the Pipfile, use:

pipenv install module_name

To apply migrations, use:

python manage.py makemigrations
python manage.py migrate