Skip to content

jack-carling/photo-pwa

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Apperture

School assignment • group project by Jack, Marijune, Padma, Robin and Victoria

About

A Progressive Web Application surrounding photos where users can capture and upload images, browse other users' pictures and chat privately or in a group about a certain topic.

Screenshots

Setup

# Terminal 1 (frontend)

cd frontend/
npm install
npm run dev
# Terminal 2 (backend)

cd backend/
npm install

Inside the backend/ folder create a new .env file.

Visit MongoDB Atlas | What You’ll Need:

  • A MongoDB account
  • An Atlas Cluster
  • A MongoDB User

Obtain your MongoDB connection string, it should looks something like this:

mongodb://[username:password@]host1[:port1][,...hostN[:portN]][/[defaultauthdb][?options]]

Now in the .env file type MONGO_DB= followed by your connection string.

MONGO_DB= ...

Now you're ready to go!

# Terminal 2 (backend)

npm run dev