A note-taking app with user registration and authentication. Users can create new notes or read saved ones once logged in.
SECRET_KEY=<Django Secret Key>
DEBUG=<Django Debug Value>
-
Install frontend dependencies with npm
npm install
-
Run the dev server for the frontend
npm run dev
-
Install backend dependencies with pipenv from a terminal at project root
pipenv install
-
Run the Django server from a terminal at
noteman
directorycd noteman python manage.py migrate python manage.py runserver
-
Open
http://localhost:8000/
in a browser to interact with the full stack app.
MIT