File Server Example
This project demonstrates how to set up a simple file server in a Go application using the Fiber framework.
Prerequisites
Ensure you have the following installed:
- Golang
- Fiber package
Setup
-
Clone the repository:
git clone https://github.com/gofiber/recipes.git
cd recipes/file-server -
Install dependencies:
go get
Running the Application
-
Start the application:
go run main.go
-
Access the file server at
http://localhost:3000
.
Example
Here is an example main.go
file for the Fiber application serving static files:
package main
import (
"log"
"github.com/gofiber/fiber/v2"
)
func main() {
app := fiber.New()
// Serve static files from the "public" directory
app.Static("/", "./public")
log.Fatal(app.Listen(":3000"))
}