bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/ct/docker.sh)"
run the advanced settings to customize your install
#!/bin/bash | |
## init pve-node | |
# rsa is less secure | |
ssh-keygen -t ed25519 | |
# add my apt cache | |
echo 'Acquire::http::Proxy "http://192.168.10.14:3142";' > /etc/apt/apt.conf.d/00aptproxy |
#!/bin/bash | |
pushd ~/Applications/ # or wherever you install AppImages, they recommend here | |
./cursor.AppImage --appimage-extract && \ | |
sed -i 's/,minHeight/,frame:false,minHeight/g' "squashfs-root/usr/share/cursor/resources/app/out/main.js" | |
[ ! -f ./appimagetool* ] && { | |
URL="https://github.com/AppImage/appimagetool/releases/download/continuous" | |
wget $URL/appimagetool-$(uname -m).AppImage && chmod +x appimagetool* |
pushd ~/Applications # or whatever you install AppImages, they recommend here | |
wget https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-$(uname -m).AppImage | |
chmod +x appimagetool-*.AppImage | |
popd |
import * as Path from 'path' | |
import * as Sequelize from 'sequelize' | |
import * as express from 'express' | |
import * as http from 'http' | |
import * as util from 'util' | |
import * as fs from './libs/fsExtra' | |
import * as fileUpload from './libs/expressFileupload' | |
import * as cookieParser from 'cookie-parser' | |
import { version } from '../package.json' | |
import * as dotenv from 'dotenv' |