refactor: simplify setup file names
Mirror to GitHub / mirror (push) Successful in 40s
Test and Lint / backend-test (push) Successful in 1m41s
Test and Lint / frontend-test (push) Successful in 2m16s
Version and Release / version-bump (push) Successful in 57s
Version and Release / trigger-drone (push) Has been skipped

- Rename SETUP_GUIDE.md to simple-setup.md
- Rename setup-picpeak.sh to simple-setup.sh
- Update all internal references to use new filenames
- Simplify naming convention for easier understanding

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-08-24 23:23:02 +02:00
parent 1b4b497fdf
commit a73d217273
3 changed files with 92 additions and 8 deletions
+84
View File
@@ -430,5 +430,89 @@
"cpuLoad": 0.189208984375,
"platform": "darwin",
"uptime": 4756491
},
{
"timestamp": 1756070368387,
"memoryTotal": 25769803776,
"memoryUsed": 25517277184,
"memoryFree": 252526592,
"memoryUsagePercent": 99.02006785074869,
"memoryEfficiency": 0.9799321492513116,
"cpuCount": 14,
"cpuLoad": 0.22147042410714285,
"platform": "darwin",
"uptime": 4756521
},
{
"timestamp": 1756070398388,
"memoryTotal": 25769803776,
"memoryUsed": 25596608512,
"memoryFree": 173195264,
"memoryUsagePercent": 99.32791392008463,
"memoryEfficiency": 0.6720860799153741,
"cpuCount": 14,
"cpuLoad": 0.16423688616071427,
"platform": "darwin",
"uptime": 4756551
},
{
"timestamp": 1756070428388,
"memoryTotal": 25769803776,
"memoryUsed": 25535250432,
"memoryFree": 234553344,
"memoryUsagePercent": 99.08981323242188,
"memoryEfficiency": 0.910186767578125,
"cpuCount": 14,
"cpuLoad": 0.14815848214285715,
"platform": "darwin",
"uptime": 4756581
},
{
"timestamp": 1756070458390,
"memoryTotal": 25769803776,
"memoryUsed": 25610747904,
"memoryFree": 159055872,
"memoryUsagePercent": 99.38278198242188,
"memoryEfficiency": 0.617218017578125,
"cpuCount": 14,
"cpuLoad": 0.12758091517857142,
"platform": "darwin",
"uptime": 4756611
},
{
"timestamp": 1756070488391,
"memoryTotal": 25769803776,
"memoryUsed": 25343475712,
"memoryFree": 426328064,
"memoryUsagePercent": 98.34562937418619,
"memoryEfficiency": 1.6543706258138116,
"cpuCount": 14,
"cpuLoad": 0.13835797991071427,
"platform": "darwin",
"uptime": 4756641
},
{
"timestamp": 1756070518391,
"memoryTotal": 25769803776,
"memoryUsed": 25244123136,
"memoryFree": 525680640,
"memoryUsagePercent": 97.96009063720703,
"memoryEfficiency": 2.0399093627929688,
"cpuCount": 14,
"cpuLoad": 0.11725725446428571,
"platform": "darwin",
"uptime": 4756671
},
{
"timestamp": 1756070548393,
"memoryTotal": 25769803776,
"memoryUsed": 25330614272,
"memoryFree": 439189504,
"memoryUsagePercent": 98.29572041829428,
"memoryEfficiency": 1.7042795817057197,
"cpuCount": 14,
"cpuLoad": 0.151611328125,
"platform": "darwin",
"uptime": 4756701
}
]
+6 -6
View File
@@ -1,4 +1,4 @@
# 🚀 PicPeak Beta Setup Guide
# 🚀 Simple Setup Guide
This guide helps non-technical users install PicPeak on Raspberry Pi or VPS systems using the automated setup script.
@@ -8,18 +8,18 @@ This guide helps non-technical users install PicPeak on Raspberry Pi or VPS syst
```bash
# Download PicPeak
wget -O setup-picpeak.sh https://raw.githubusercontent.com/the-luap/picpeak/main/setup-picpeak.sh
wget -O simple-setup.sh https://raw.githubusercontent.com/the-luap/picpeak/main/simple-setup.sh
# Make it executable
chmod +x setup-picpeak.sh
chmod +x simple-setup.sh
# Run the setup
bash setup-picpeak.sh
bash simple-setup.sh
```
**Or in one command:**
```bash
curl -fsSL https://raw.githubusercontent.com/the-luap/picpeak/main/setup-picpeak.sh | bash
curl -fsSL https://raw.githubusercontent.com/the-luap/picpeak/main/simple-setup.sh | bash
```
### Step 2: Follow the Interactive Prompts
@@ -197,7 +197,7 @@ docker compose up -d
#### "Permission denied" when running script
```bash
chmod +x setup-picpeak.sh
chmod +x simple-setup.sh
```
#### "Docker command not found" after installation
+2 -2
View File
@@ -1,7 +1,7 @@
#!/bin/bash
# ============================================================================
# PicPeak Setup Script for Raspberry Pi and VPS
# Simple Setup Script for PicPeak
# ============================================================================
#
# This script helps non-technical users install PicPeak, a secure photo
@@ -10,7 +10,7 @@
# Supported Systems: Ubuntu, Debian, Raspberry Pi OS, CentOS, Fedora
# Requirements: At least 2GB RAM and 20GB free storage
#
# Usage: bash setup-picpeak.sh
# Usage: bash simple-setup.sh
# ============================================================================
set -e # Exit on any error