aboutsummaryrefslogtreecommitdiff
path: root/docs/man1
diff options
context:
space:
mode:
authorXe <me@christine.website>2022-12-30 15:31:44 -0500
committerXe <me@christine.website>2022-12-30 15:31:44 -0500
commit45ddea9aca135f522dde57a62bf58c563f8bdf94 (patch)
treee2ef8d07edf0a6e2b5dabc020154d342947eebf6 /docs/man1
parent6a0ed693247e268322d34fad3aa793e16071a7d2 (diff)
downloadx-45ddea9aca135f522dde57a62bf58c563f8bdf94.tar.xz
x-45ddea9aca135f522dde57a62bf58c563f8bdf94.zip
remove deprecated code
Signed-off-by: Xe <me@christine.website>
Diffstat (limited to 'docs/man1')
-rw-r--r--docs/man1/appsluggr.1113
1 files changed, 0 insertions, 113 deletions
diff --git a/docs/man1/appsluggr.1 b/docs/man1/appsluggr.1
deleted file mode 100644
index a0f3881..0000000
--- a/docs/man1/appsluggr.1
+++ /dev/null
@@ -1,113 +0,0 @@
-.Dd December 09, 2018
-.Dt APPSLUGGR 1 URM
-
-
-.Sh NAME
-.Nm appsluggr
-.Nd appsluggr packages a precompiled binary application as a Heroku style slug for use with Dokku.
-
-
-.Sh SYNOPSIS
-.Nm
-
-.Op Fl fname
-.Op Fl license
-.Op Fl web
-.Op Fl web-scale
-.Op Fl worker
-.Op Fl worker-scale
-
-
-.Sh DESCRIPTION
-.Nm
-is a small tool to package
-.Li GOOS=linux GOARCH=amd64
-binaries for consumption on
-.Li hyperlink: http://dokku.viewdocs.io/dokku/ Dokku
-.
-
-.Bl -tag -width " " -offset indent -compact
-
-.It Fl fname
-The filename to write the resulting slug to.
-
-The default value for this is
-.Li slug.tar.gz
-.
-
-.It Fl license
-If set, the tool will show its software license details and then exit.
-
-.It Fl web
-The path to the binary for the web process.
-
-One of
-.Fl web
-or
-.Fl worker
-must be set.
-
-.It Fl web-scale
-The default scale for web process if defined.
-
-The default value for this is 1.
-
-.It Fl worker
-The path to the binary for the worker process.
-One of
-.Fl web
-or
-.Fl worker
-must be set.
-
-.It Fl worker-scale
-The default scale for the worker process if defined.
-
-The default value for this is 1
-
-.El
-
-
-.Sh EXAMPLES
-
-.Li appsluggr
-
-.Li appsluggr -web web
-
-.Li appsluggr -worker ilo-sona
-
-.Li appsluggr -fname foo.tar.gz -web web -worker worker -web-scale 4 -worker-scale 16
-
-
-.Sh IMPLEMENTATION NOTES
-
-.Nm
-when used with
-.Lk hyperlink: http://dokku.viewdocs.io/dokku/ Dokku
-requires the use of the
-.Lk hyperlink: https://github.com/ryandotsmith/null-buildpack Null Buildpack
-as follows:
-
-.Li $ dokku config:set $APP_NAME BUILDPACK_URL=https://github.com/ryandotsmith/null-buildpack
-
-Or
-
-.Li $ ssh dokku@host config:set <see above>
-
-
-.Sh DIAGNOSTICS
-
-.Ex -std appsluggr
-
-
-.Sh SEE ALSO
-
-.Bl -bullet
-
-.It
-.Lk hyperlink: http://dokku.viewdocs.io/dokku/ Dokku
-
-.It
-.Lk hyperlink: https://github.com/ryandotsmith/null-buildpack Null Buildpack
-
-.El