A project created by Team Lilacs for SheHacks 2021.
Find the site running on https://lilacs-womenkit.herokuapp.com/
pipenv install
pipenv shell
pipenv install django
pipenv install djangorestframework
pipenv install psycopg2
pipenv install gunicorn
pipenv install django-heroku
pipenv lock
pipenv install
Install PostgreSQL (latest version) from https://www.postgresql.org/download/
Setup postgres in your system according to your OS. Eg: for manjaro it would be something like this https://dev.to/tusharsadhwani/how-to-setup-postgresql-on-manjaro-linux-arch-412l
Create a new database in your Postgres server and name it womenkit.
create database womenkit;
\c womenkit
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'womenkit',
'USER': 'postgres',
'PASSWORD': '<postgres-password>',
'HOST': '127.0.0.1',
'PORT': '5432',
}
}
python manage.py makemigrations
python manage.py migrate
python manage.py runserver