mirror of
https://github.com/makeplane/plane.git
synced 2025-12-29 00:24:56 +01:00
* fix: register instance script * dev: create separate file for ee register instance * dev: separate the code to prime server
40 lines
1.1 KiB
Bash
Executable File
40 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
python manage.py wait_for_db
|
|
# Wait for migrations
|
|
python manage.py wait_for_migrations
|
|
|
|
# Create the default bucket
|
|
#!/bin/bash
|
|
|
|
# Collect system information
|
|
HOSTNAME=$(hostname)
|
|
MAC_ADDRESS=$(ip link show | awk '/ether/ {print $2}' | head -n 1)
|
|
CPU_INFO=$(cat /proc/cpuinfo)
|
|
MEMORY_INFO=$(free -h)
|
|
DISK_INFO=$(df -h)
|
|
|
|
# Concatenate information and compute SHA-256 hash
|
|
SIGNATURE=$(echo "$HOSTNAME$MAC_ADDRESS$CPU_INFO$MEMORY_INFO$DISK_INFO" | sha256sum | awk '{print $1}')
|
|
|
|
# Export the variables
|
|
MACHINE_SIGNATURE=${MACHINE_SIGNATURE:-$SIGNATURE}
|
|
export SKIP_ENV_VAR=1
|
|
|
|
# License check
|
|
python manage.py license_check
|
|
|
|
# Register instance
|
|
python manage.py register_instance_ee "$MACHINE_SIGNATURE"
|
|
|
|
# Load the configuration variable
|
|
python manage.py configure_instance
|
|
|
|
# Create the default bucket
|
|
python manage.py create_bucket
|
|
|
|
# Clear Cache before starting to remove stale values
|
|
python manage.py clear_cache
|
|
|
|
exec gunicorn -w "$GUNICORN_WORKERS" -k uvicorn.workers.UvicornWorker plane.asgi:application --bind 0.0.0.0:"${PORT:-8000}" --max-requests 1200 --max-requests-jitter 1000 --access-logfile -
|