This article walks you through setting up static files with Rocket, an ergonomic framework for simple web applications.
/
where the homepage is served and shows you how you can serve HTML or other types of files with Rocket.
Note that static assets are declared in the Shuttle.toml
file.
You can clone the example below by running the following (you’ll need shuttle
CLI installed):
shuttle run
then visit the home route at http://localhost:8000
- you should see a homepage that shows our included HTML file.
You can extend this example by adding more routes that serve other files.