✨App in production at https://postal-app.netlify.app/
This web app has been built using MongoDB, Apollo GraphQL and React (MERN Stack + GraphQL).
Inside the app you will be able to:
- Register and login users.
- Create and delete posts in real time.
- Visualize posts created by other users.
- Like and comment them.
- Download or clone the project
- Create a
config.js
file at the root of the project with a link to your MongoDB database and your secret key.
module.exports = {
MONGODB: 'mongodb+srv://xxxxxx',
SECRET_KEY: 'xxxxxx'
}
- Install the server dependencies with
npm install
at the root of the project and runnpm run start
. The backend code will be running at http://localhost:5000 - Go to the client folder and run
npm install
to install the frontend dependencies. - Start the frontend project with
npm start
. - Open http://localhost:3000 in your browser.