jukebox.rodeo is a Svelte application. You might find it deployed at jukebox.rodeo!
You can pull the latest docker release of this project:
docker pull ghcr.io/thejukebox/jukeblog/jukeblog:latest
And then you can run it:
docker run -p 3000:3000 ghcr.io/thejukebox/jukeblog/jukeblog:latest &
# Or a specific tag
docker run -p 3000:3000 ghcr.io/thejukebox/jukeblog/jukeblog:0.1.0 &
You should now be able to reach the application from your browser at http://127.0.0.1
.
You can build and run the project locally with npm and Node:
# Clone the project
git clone https://gitlab.com/thejukebox/jukeblog.git
cd jukeblog
# Install the dependencies
npm i
# Run the build and make it accessible
npm run build
npm run preview
> [email protected] preview
> vite preview
➜ Local: http://localhost:4173/
➜ Network: use --host to expose
➜ press h + enter to show help
Once you've created a project and installed dependencies with npm install
(or pnpm install
or yarn
), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
To create a production version of your app:
npm run build
You can preview the production build with npm run preview
.
To deploy your app, you may need to install an adapter for your target environment.