I hereby claim:
- I am devbeno on github.
- I am devbeno (https://keybase.io/devbeno) on keybase.
- I have a public key whose fingerprint is CD69 52A2 7AA8 32DA CAD1 D2C4 6FDE 77FC BA6E 508F
To claim this, I am signing this object:
#!/bin/bash | |
# Update and install necessary packages | |
apt-get update | |
apt-get upgrade -y | |
apt-get install -y git python3-dev python3-pip python3-venv mariadb-server redis-server curl npm supervisor | |
# Start MariaDB and run secure installation | |
systemctl start mariadb | |
mysql_secure_installation <<EOF |
ARG PYTHON_VERSION=3.11.6 | |
ARG DEBIAN_BASE=bookworm | |
FROM python:${PYTHON_VERSION}-slim-${DEBIAN_BASE} AS base | |
COPY resources/nginx-template.conf /templates/nginx/frappe.conf.template | |
COPY resources/nginx-entrypoint.sh /usr/local/bin/nginx-entrypoint.sh | |
ARG WKHTMLTOPDF_VERSION=0.12.6.1-3 | |
ARG WKHTMLTOPDF_DISTRO=bookworm | |
ARG NODE_VERSION=18.18.2 |
language_code | language_name | enabled | |
---|---|---|---|
af | Afrikaans | 0 | |
am | አማርኛ | 0 | |
ar | العربية | 1 | |
bg | Български | 0 | |
bn | বাংলা | 0 | |
bo | བོད་སྐད་ | 0 | |
bs | Bosanski | 1 | |
ca | Català | 0 | |
cs | Čeština | 0 |
I hereby claim:
To claim this, I am signing this object:
tap "homebrew/bundle" | |
tap "homebrew/cask" | |
tap "homebrew/cask-drivers" | |
tap "homebrew/cask-versions" | |
tap "homebrew/core" | |
tap "homebrew/services" | |
tap "osx-cross/avr" | |
tap "sashkab/python" | |
tap "teamookla/speedtest" | |
brew "rbenv" |
#!/bin/bash | |
cat <<EOS | |
AkkeyLab | |
The elapsed time does not matter. | |
Because speed is important. | |
EOS |
mount /dev/mapper/crypt /mnt | |
btrfs sub create /mnt/@ && \ | |
btrfs sub create /mnt/@home && \ | |
btrfs sub create /mnt/@abs && \ | |
btrfs sub create /mnt/@tmp && \ | |
btrfs sub create /mnt/@srv && \ | |
btrfs sub create /mnt/@snapshots && \ | |
btrfs sub create /mnt/@btrfs && \ | |
btrfs sub create /mnt/@log && \ | |
btrfs sub create /mnt/@cache |
wget https://github.com/k3s-io/k3s/releases/download/v1.23.5%2Bk3s1/k3s | |
sudo mv k3s /usr/local/bin/ | |
sudo chmod u+x /usr/local/bin/k3s | |
k3s --version | |
# If you get openssl error | |
sudo zypper install openssl | |
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash |
{ | |
"version": "2", | |
"templates": [ | |
{ | |
"type": 3, | |
"title": "Budibase", | |
"categories": ["Tools"], | |
"description": "Build modern business apps in minutes", | |
"logo": "https://budibase.com/favicon.ico", | |
"platform": "linux", |
<?php | |
require_once __DIR__ . '/../vendor/autoload.php'; | |
use Illuminate\View\Factory; | |
use Illuminate\Events\Dispatcher; | |
use Illuminate\View\FileViewFinder; | |
use Illuminate\Filesystem\Filesystem; | |
use Illuminate\View\Engines\PhpEngine; | |
use Illuminate\View\Engines\EngineResolver; |