Skip to content

larryhudson/ra-lineup-preview

Repository files navigation

ra-lineup-preview

What I want to do with this

  • Make it possible to input a Resident Advisor event lineup, and the app will search Soundcloud for matching mixes by those DJs.
  • The app will allow the user to preview these mixes. It can do this by loading a Soundcloud embed for the track. This allows the user to click through the mix and view comments to get an idea of the vibe.
  • The idea is to be able to do something like Discover Quickly but for mixes. To be able to quickly get the vibe of a mix without needing to click through it.
  • You could potentially do something like a 'Tinder' interface where you swipe left or right on mixes and create a list of mixes to explore.

Finding mixes

interface

  • I'd like to use HTMX for the interface.

Local dev instructions

  • git clone this repository
  • npm install to install dependencies
  • npm run dev to start up Astro dev server

From Astro

npm create astro@latest -- --template minimal

Open in StackBlitz Open with CodeSandbox Open in GitHub Codespaces

🧑‍🚀 Seasoned astronaut? Delete this file. Have fun!

🚀 Project Structure

Inside of your Astro project, you'll see the following folders and files:

/
├── public/
├── src/
│   └── pages/
│       └── index.astro
└── package.json

Astro looks for .astro or .md files in the src/pages/ directory. Each page is exposed as a route based on its file name.

There's nothing special about src/components/, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.

Any static assets, like images, can be placed in the public/ directory.

🧞 Commands

All commands are run from the root of the project, from a terminal:

Command Action
npm install Installs dependencies
npm run dev Starts local dev server at localhost:3000
npm run build Build your production site to ./dist/
npm run preview Preview your build locally, before deploying
npm run astro ... Run CLI commands like astro add, astro check
npm run astro -- --help Get help using the Astro CLI

👀 Want to learn more?

Feel free to check our documentation or jump into our Discord server.