Skip to content

itsybits-xyz/ineedempathy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Aug 29, 2021
f79a944 · Aug 29, 2021
Aug 29, 2021
Aug 16, 2021
Aug 17, 2021
Jul 31, 2021
Aug 29, 2021
Aug 7, 2021
Aug 5, 2021
Aug 8, 2021
Aug 16, 2021
Dec 18, 2020
Aug 4, 2021
Dec 18, 2020
Dec 31, 2020
Aug 9, 2021
Dec 16, 2020
Aug 8, 2021
Aug 15, 2021
Dec 16, 2020
Aug 16, 2021
Aug 16, 2021
Aug 16, 2021
Aug 8, 2021
Aug 16, 2021
Aug 16, 2021
Aug 8, 2021

Repository files navigation

logo

I Need Empathy

An app to train a needs consciousness.

Backend Development

Mac Setup

brew install python3
pip3 install virtualenv virtualenvwrapper poetry

Run Server

workon ineedempathy
poetry install
./run.sh

Check http://localhost:8000/

Migrations

Create a migration using

alembic revision --autogenerate -m "Description."

Apply migration

alembic upgrade head

or

alembic upgrade ae10bec   # Where ae10bec is the partial sha of the version.

Rewind a migration

alembic downgrade -1  # This can also take a sha version.

Seed Data

python3 script/seed.py

Frontend Development

nvm use 14
cd frontend
npm install
npm start

Check http://localhost:3000/