Add flame
This commit is contained in:
parent
79cee1b8e1
commit
8817ddba0a
14
README.MD
14
README.MD
|
@ -46,6 +46,7 @@ To enter in temporary filesystem
|
|||
- [adguardhome](#adguardhome) ([site](https://adguard.com/fr/adguard-home/overview.html)) ([src](https://github.com/AdguardTeam/AdguardHome))
|
||||
- [authelia](#authelia) ([site](https://www.authelia.com/)) ([src](https://github.com/authelia/authelia))
|
||||
- [element-web](#element-web) ([site](https://element.io/)) ([src](https://github.com/vector-im/element-web))
|
||||
- [flame](#flame) ([site](https://github.com/pawelmalak/flame)) ([src](https://github.com/pawelmalak/flame))
|
||||
- [gitea](#gitea) ([site](https://gitea.io)) ([src](https://github.com/go-gitea/gitea/))
|
||||
- [glpi](#glpi) ([site](http://glpi-project.org/)) ([src](https://github.com/glpi-project/glpi))
|
||||
- [gotify](#gotify) ([site](https://gotify.net/)) ([src](https://github.com/gotify))
|
||||
|
@ -104,6 +105,19 @@ a2ensite element-web
|
|||
systemctl restart apache2
|
||||
```
|
||||
|
||||
#### flame
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt-get install -y flame
|
||||
|
||||
#Edit /etc/default/flame and change SECRET and PASSWORD
|
||||
|
||||
systemctl enable --now flame
|
||||
```
|
||||
|
||||
#### gitea
|
||||
|
||||
```bash
|
||||
|
|
|
@ -0,0 +1,54 @@
|
|||
#!/bin/bash
|
||||
|
||||
VERSION=2.3.0
|
||||
|
||||
[ -e ./lib/function.sh ] && source ./lib/function.sh
|
||||
|
||||
APP=flame
|
||||
DEPOT=https://github.com/pawelmalak/flame.git
|
||||
GIT_VERSION=v${VERSION}
|
||||
DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M)
|
||||
DEBIAN_VERSION_CODENAME=bullseye
|
||||
IMAGE_SIZE=3
|
||||
|
||||
STEP="envinit prebuild build makedeb"
|
||||
|
||||
envinit() {
|
||||
apt-get update
|
||||
if [ $(dpkg -l | grep -e 'ii nodejs ' | wc -l) -eq 1 ];
|
||||
then
|
||||
apt-get dist-upgrade -y
|
||||
else
|
||||
apt install -y --no-install-recommends git wget ca-certificates dpkg fakeroot build-essential nodejs npm
|
||||
fi
|
||||
}
|
||||
|
||||
prebuild(){
|
||||
[ -e /tmp/git ] && rm -fr /tmp/git
|
||||
[ -e /tmp/${APP} ] || mkdir /tmp/${APP}
|
||||
git clone --depth 1 -b ${GIT_VERSION} ${DEPOT} /tmp/git
|
||||
cp -r /tmp/git/. /tmp/${APP}
|
||||
}
|
||||
|
||||
build() {
|
||||
cd /tmp/${APP}/
|
||||
npm install mkdirp
|
||||
npm run dev-init
|
||||
cd client
|
||||
npm run build
|
||||
rm -fr ../public/*
|
||||
mv build/* ../public/
|
||||
}
|
||||
|
||||
makedeb(){
|
||||
PATH_DEB=/tmp/src/rootfs
|
||||
|
||||
cp -fr /tmp/${APP}/* ${PATH_DEB}/usr/share/flame/
|
||||
mv ${PATH_DEB}/usr/share/flame/data ${PATH_DEB}/var/lib/${APP}/data
|
||||
mv ${PATH_DEB}/usr/share/flame/public ${PATH_DEB}/var/lib/${APP}/public
|
||||
ln -fs /var/lib/${APP}/data ${PATH_DEB}/usr/share/${APP}/data
|
||||
ln -fs /var/lib/${APP}/public ${PATH_DEB}/usr/share/${APP}/public
|
||||
|
||||
sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control
|
||||
fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
/etc/default/flame
|
|
@ -0,0 +1,8 @@
|
|||
Package: flame
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends:nodejs
|
||||
Maintainer: Thomas Legay <thomas@syngate.fr>
|
||||
Description: flame
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
id flame &> /dev/null || useradd flame -r -s /bin/false
|
||||
|
||||
chown -R flame:flame /var/lib/flame
|
|
@ -0,0 +1,5 @@
|
|||
PORT=5005
|
||||
NODE_ENV=production
|
||||
VERSION=2.3.0
|
||||
PASSWORD=flame_password
|
||||
SECRET=e02eb43d69953658c6d07311d6313f2d4467672cb881f96b29368ba1f3f4da4b
|
|
@ -0,0 +1,13 @@
|
|||
[Unit]
|
||||
Description=Flame server
|
||||
After=multi-user.target
|
||||
|
||||
[Service]
|
||||
User=flame
|
||||
Group=flame
|
||||
EnvironmentFile=/etc/default/flame
|
||||
ExecStart=/usr/bin/node server.js
|
||||
WorkingDirectory=/usr/share/flame
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Reference in New Issue