Skip to content

javalin/website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

eb44d05 · Mar 10, 2025
Mar 10, 2025
Oct 15, 2022
Dec 19, 2024
Mar 1, 2024
Dec 17, 2024
Feb 19, 2024
Jan 5, 2020
Aug 8, 2023
Aug 28, 2024
Jan 28, 2024
Dec 17, 2024
Aug 8, 2023
Jun 27, 2021
May 22, 2017
Aug 10, 2023
Aug 8, 2023
Mar 9, 2025
Oct 3, 2022

Repository files navigation

javalin.io Chat at https://discord.gg/sgak4e5NKv License

This repo contains the source code for javalin.io.

Pull requests for adding tutorials and fixing errors in docs are very welcome.

Quickstart

This website is built with Jekyll. To run it locally, you need to have Ruby and Bundler installed.

# Install dependencies
bundle install
# Run the server
bundle exec jekyll serve --port 4000 --future --incremental

Alternatively, you can use Docker to run the site without installing Ruby and Bundler.

# Build the Docker image
docker build -t javalin-web .
# Run the Docker container
docker run -p 4000:4000 -v ${PWD}:/app javalin-web

The site will be available at http://localhost:4000

The contributing guidelines have additional set-up information.

Contributing

Contributions are welcome! Please read the contributing guidelines before submitting a pull request.