Optimize application developed with the MERN stack
https://optimizelocker.herokuapp.com
-
Show off programming and design abilities, building a full-stack fully functional application
-
Create an useful tool that helps the community
-
Make a website that can become bigger and expandable into new domains
-
Have fun!
- MERN Stack, mongodb, express, react, redux, reactstrap, node, material.ui, react-share, and many more libraries...
- Ricardo Enrique Gonzalez Penuela: https://rgonzalezp.github.io/
- Santiago Munera: https://sfmunera10.github.io/
npm install
to install node modules in the project foldernpm run client-install
to install the client- add configuration file for oktaClient connection both in front and backend:
- Add "configfile.js" in client src folder with this code:
export default{ url: '<<your okta domain>>', issuer: 'https://dev-767504.oktapreview.com/oauth2/default', redirect_uri: window.location.origin + '/implicit/callback', client_id: '<<your id client>>'};
- Add "oktaClient.js" in root/lib folder with this code:
const okta = require('@okta/okta-sdk-nodejs'); const client = new okta.Client({ orgUrl: '<<your okta domain>>', token: '<<secret-token>>'}); module.exports = client;
- Add Google Api key at client/src/components/shared/Plans.js -Request your keys by contacting Santiago Múnera or Ricardo González at Slack https://web-dev-uniandes.slack.com/messages
- use command
npm run dev
to run client and backend concurrently - Save any changes to the files and the server will automatically notice changes and re-deploy
- Also, make sure you are using a valid mongodb user @ config/keys.js
Code Copyright 2018 Ricardo Enrique Gonzalez Peñuela, Santiago Munera. Code released under the MIT license.