Skip to content

mikebrown4000/Band-It

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

214 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Band-It

Music can be hard, but making a band should be easy. That's why we created a platform that makes it easier for bands to find musicians and for musicians to network with bands.

User Stories

alt text alt text

Diagram

alt text

Wireframes

Login and Register

alt text

Band Profile

alt text

Band Index

alt text

Artist Index

alt text

Code Snippet

  try {
  console.log(req.params.id);
  console.log(res.locals.user.id);
  const { id } = res.locals.user;
  const artist = await Artist.findByPk(id);
  artist.bandId = req.params.id;
  await artist.save();

  res.json({id:artist.bandId})
  }catch (e) {
        res.status(500).send(e.message)
    }
})

Deployed Site: http://banditproject.surge.sh/

About

Music can be hard, but making a band should be easy.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors