pub / stagit-scripts

Building src.jayvii.de with stagit
git clone https://src.jayvii.de/pub/stagit-scripts.git
Home | Log | Files | Exports | Refs | README | RSS

commit 2621eb30651ce8437099c196894ffb7d0d5ae54b
parent d5b1892934b96e5591ede28baeca9bd60a2be56a
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date:   Sun, 28 Apr 2024 20:18:13 +0200

Create deployable export

Diffstat:
AMakefile | 14++++++++++++++
MREADME | 4++++
2 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -0,0 +1,14 @@ +# SPDX-License-Identifier: AGPL-3.0-or-later +# SPDX-FileCopyrightText: 2024 JayVii <jayvii[AT]posteo[DOT]de> + +# Create Package ready for deployment +package: + git archive main . \ + ":!LICENSES" \ + ":!README" \ + ":!.reuse" \ + ":!.git" \ + ":!.gitignore" \ + ":!Makefile" \ + --format=tar.gz \ + -o "deployable.tar.gz" diff --git a/README b/README @@ -53,6 +53,10 @@ Setup - Setup git-user: useradd -r -m -U -d /var/www/git.myserver.com -s /bin/sh git +You can also create a "deployable.tar.gz" file with: + + make package + Private Repositories --------------------