Skip to content

edgemony-coding-bootcamp/project-salvatore-b

Repository files navigation

EDGEMONY FINAL PROJECT - TEAM B

Organizzazione

  • daily standup lun-ven 9.30-10
  • durante il daily si segnalano problemi, si discutono implementazioni
  • si lavora in maniera autonoma
  • i task possono essere assegnati sia dal team leader che dal team stesso

Strumenti

  • Github
    • repo
    • issues
    • board
  • Slack
  • Google Meet & Calendar
  • hosting: scelta libera
  • framework: scelta tra CRA, Vite, Next
  • librerie: scelta libera

Backend

L'endpoint di backend è:

i dati esposti seguono questo schema:

{
  "id": number,
  "title": string,
  "artist": string,
  "cover": string,
  "year": number,
  "length": number,
  "genres": string[],
  "songs": string[],
  "new": boolean,
  "favorite": boolean,
  "rating": number,
  "users": number[],
  "featuring": string[]
}

L'utilizzo degli endpoint con autenticazione è documento nel relativo repository.

NB: su richiesta è possibile modificare lo schema per aggiungere nuovi dati.

Repository

  • il branch main è protetto
  • ogni task viene sviluppato in una branch con nomenclatura feature/[task] o fix/[task] in base alla tipologia
  • per mergiare il codice da una branch verso main si crea una PR assegnando tutti i membri del team come reviewer
  • le PR possono essere mergiate solo aver ricevuto almeno 1 approvazione
  • siete liberi di fare fork ma solo questo repo sarà quello preso in considerazione

Obiettivo

  • SPOTIFY CLONE! (EDGIFY)
    • usate l'attuale UI di Spotify come punto di partenza ma siete liberi di applicare eventuali personalizzazioni
  • obiettivi minimi:
    • visualizzare lista (in griglia) di album e playlist disponibili
      • filtri per genere
      • visualizza solo album o playlist
    • cliccando sulla cover vedo i dettagli di un singolo elemento
    • nel dettaglio di una album/playlist posso:
      • marcare un album o playlist come preferito
      • esprimere un giudizio, voto da 1 a 5
      • cancellare/nascondere l'album o playlist
    • layout responsive
  • obiettivi extra:
    • flusso di login (signin) e mostrare solo i dati legati all'utente loggato
    • flusso creazione nuove utente (signup)
    • ricerca testuale (titolo)
    • filtri avanzati (artista, anno, ecc)

This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying pages/index.js. The page auto-updates as you edit the file.

API routes can be accessed on http://localhost:3000/api/hello. This endpoint can be edited in pages/api/hello.js.

The pages/api directory is mapped to /api/*. Files in this directory are treated as API routes instead of React pages.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.