From f8822bf79c1eb2e165dee0953ef3915d81bcf65b Mon Sep 17 00:00:00 2001 From: vx-clutch Date: Wed, 28 Jan 2026 10:12:19 -0500 Subject: [PATCH] add fp to docs.fsdproject.org --- docs.fsdproject.org/static/fp.html | 252 +++++++++++++++++++++++++++++ docs.fsdproject.org/www/index.lua | 2 + 2 files changed, 254 insertions(+) create mode 100644 docs.fsdproject.org/static/fp.html diff --git a/docs.fsdproject.org/static/fp.html b/docs.fsdproject.org/static/fp.html new file mode 100644 index 0000000..b0003f0 --- /dev/null +++ b/docs.fsdproject.org/static/fp.html @@ -0,0 +1,252 @@ + + + + + + Documentation + + + +
+
+

Documentation

+

fp: Free Pkg, the offical package manager for fSD software

+
+ + + +
+

Introduction

+

Fp, or FreePkg, is a minimal package manager that install fSD packages.

+
+ +
+

Installation

+

From Source

+
git clone https://git.vxserver.dev/fSD/fp
+
cd fp
+
sudo make install
+

One Shot

+
curl --proto '=https' --tlsv1.2 -sSf https://dl.fsdproject.org/fp | sh -s -- --web-ver
+
+ +
+

Quick Start

+
fp install fes
+

This installs the Fes package

+ +
+

Cli Reference

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescription
--helpDisplay help information.
--versionPrint version information.
installInstalls a package
removeUninstalls a package
updateUpdate fp's version
searchSearch for a package, this checks against both the name and the description.
+
+ + +
+ + diff --git a/docs.fsdproject.org/www/index.lua b/docs.fsdproject.org/www/index.lua index 0147838..dc1e9cf 100644 --- a/docs.fsdproject.org/www/index.lua +++ b/docs.fsdproject.org/www/index.lua @@ -23,6 +23,8 @@ site:note(u.cc { std.center(std.h3("Tools")), std.a("/static/yait.html", std.h4("Yait")), std.p("  Yet Another Init Tool Online Documentation. [" .. std.a("https://fsdproject.org/releases/yait", "yait home") .. "]"), + std.a("/static/fp.html", std.h4("Fp")), + std.p("  Free Pkg Online Documentation. [" .. std.a("https://fsdproject.org/releases/yait", "yait home") .. "]"), }) })