An initial implementation of the Container concepts according to ICDD ISO 21597, DIN SPEC 91391, ISO 19650, and LDP.
Minimal full-stack MERN app with authentication using passport and JWTs. In buit Index.ttl which can be queried using HyperGraphQL.
This project uses the following technologies:
- React and React Router for frontend
- Express and Node for the backend
- MongoDB for the database
- Redux for state management between React components
- Install MongoDB and create credentials. Add
MONGOURI
from your mLab database inconfig/keys.js
.
module.exports = {
mongoURI: "YOUR_MONGO_URI_HERE",
secretOrKey: "secret"
};
- Install all dependencies by running the below command for client and server dependent packages
npm install && npm run client-install
- Start up both client and server using the below command:
npm run dev
- Webpage opens on http://localhost:3000 (which is the client address)
This work draws from the tutorials below: