Note taking app that allows people to create personal notes, search for a specific note, and filter notes by assigned tag.
- Deployed Site:
Tech:
This app uses Django 2.1.2, Python 3.6, and React 16.3.
This project is broken up into a backend and frontend. The backend contains the Django project which uses the Django Rest Framework to host a simple API. The frontend uses React and queries data from the API.
- fork/clone repo
- navigate into root directory
- to start the backend server:
cd backend/srcCreate and activate a virtual environmentRun pip install -r requirements.txtIn /lambda_notes/settings.py change line 157 to CORS_ORIGIN_ALLOW_ALL = Truepython manage.py runserver
- Django server will be running at http://localhost:8000/
- to start the front end:
cd frontend/lambda_notesyarn installyarn start
- local host will be at http://localhost:3000/