This is a note taking application.
- Python/Django
- Node/React
- TypeScript
- GraphQL
git clone https://github.com/denibulkashvili/TakeNote
Python 3.7 recommended
- Create new virtual environment
e.g. via Conda
conda create --name my-env
conda activate my-env
- Install requirements
pip install -r requirements.txt
- Add
.env
file insidetake_note
directory
DEBUG=on
SECRET_KEY='paste-your-secret-key'
python manage.py makemigrations
python manage.py migrate
cd client
yarn
Under my-env
virtual environment, run in the terminal
python manage.py runserver
yarn client start