chingu journal is a simple crud applciation with both a frontend and backend. Made to fit the requirements of the chingu.io before voyage solo project.
you can register/sign in, create notes, edit notes, and delete notes.
clone or fork this repo
cd into file directory and create a .env file, inside of it create the following env variables
PORT = 4000
NODE = development
MONGO_URI = your-mongo-uri
JWT_SECRET = your-random-jwt-secret
run
npm run installDepsThis will install the dependency's for the client and the backend.
to run the application in dev mode, run
npm run dev-server