pipenv sync --dev
Frontend created with Next + Typescript
On Ubuntu:
sudo apt-get update
sudo apt-get -y install postgresql # confirm if this dependency is necessary
cd backend
pipenv clean
pipenv install
source `pipenv --venv`/bin/activate
cd api/personal_finances
pip install zappa==0.52.0
zappa deploy|update dev # updates returns an error, but works
- https://pre-commit.com/
- https://pypi.org/project/isort/
- Zappa
- React Tutorial:
- https://htmlcolorcodes.com/color-picker/
- Base color: #FF8B00
- https://serverlesscode.com/post/zappa-wsgi-for-python-pt-2/
When facing issues with pipenv install
, I had to:
- deactivate the virtualenv:
deactivate
- set the python to the desired version:
pyenv global 3.8.7
- install pipenv on that python version:
pip install pipenv
- after that, it worked
Another error: