mirror of
https://github.com/maciejpedzich/spotifyplaylistarchive.com.git
synced 2024-11-09 23:13:01 +01:00
61 lines
854 B
Markdown
61 lines
854 B
Markdown
# DISCLAIMER
|
|
|
|
SPOTIFY is a registered trademark of Spotify AB. This project is not associated with Spotify AB in any way.
|
|
|
|
# spotifyplaylistarchive.com
|
|
|
|
This is the frontend of [spotify-playlist-archive](https://github.com/mackorone/spotify-playlist-archive) repository by [mackorone](https://github.com/mackorone).
|
|
|
|
## Setup
|
|
|
|
Make sure to install the dependencies:
|
|
|
|
```bash
|
|
# yarn
|
|
yarn install
|
|
|
|
# npm
|
|
npm install
|
|
|
|
# pnpm
|
|
pnpm install --shamefully-hoist
|
|
```
|
|
|
|
## Development Server
|
|
|
|
Start the development server on http://localhost:3000
|
|
|
|
```bash
|
|
npm run dev
|
|
```
|
|
|
|
## Production
|
|
|
|
Build the application for production:
|
|
|
|
```bash
|
|
npm run build
|
|
```
|
|
|
|
Locally preview production build:
|
|
|
|
```bash
|
|
npm run preview
|
|
```
|
|
|
|
Manually lint code and fix errors:
|
|
|
|
```bash
|
|
npm run lint -- --fix
|
|
```
|
|
|
|
Manually format code:
|
|
|
|
```bash
|
|
npm run prettier-format
|
|
```
|
|
|
|
## License
|
|
|
|
MIT
|