A web application where you can vote the tracks of your favorites.
Clone the repository. It contains both the frontend and the backend, so the backend directory can be moved and deployed separately if needed.
- Node.js and npm
- Clone the Repository
git clone <repository-url>
cd musica
- Install dependencies
npm install
- Run the Development Server To start the Next.js development server, run:
npm run dev
This command will start the server and you can access the application in your browser at http://localhost:3000.
- Build the Project To create an optimized production build of the application, run:
npm run build
This command generates a .next folder containing the compiled application.
- Start the Production Server After building the project, you can start the production server with:
npm start
This command runs the built application. By default, it will be accessible at http://localhost:3000.
- Run Tests If you have tests set up for your Next.js project, you can run them using:
npm test