diff --git a/docs/index.html b/docs/index.html old mode 100644 new mode 100755 index 8c019ba..5bea2a7 --- a/docs/index.html +++ b/docs/index.html @@ -569,10 +569,16 @@
The self-hosted family planner
Manage your household together. Tasks, shopping, meals, calendar, budget - all in one place. Self-hosted, private, yours.
- - - View on GitHub - +http://localhost:3000 and log in. Want to build from source or set up HTTPS? The Installation Guide covers all options.',
+ setup_note: 'Then open http://localhost:3000 and log in. Want a step-by-step guide, HTTPS setup, or troubleshooting? See the Installation Guide.',
footer_heart: 'Built with care for families who value privacy and simplicity.',
footer_contrib: 'Contributing'
},
@@ -819,6 +826,7 @@ cp .env.example .env # set SESSION_SECRET and DB_ENCRY
hero_tagline: 'Der selbstgehostete Familienplaner',
hero_desc: 'Organisiert euren Haushalt gemeinsam. Aufgaben, Einkauf, Mahlzeiten, Kalender, Budget \u2014 alles an einem Ort. Selbstgehostet, privat, eures.',
hero_cta: 'Auf GitHub ansehen',
+ hero_install: 'Installationsanleitung',
badge_nocloud: 'Keine Cloud n\u00f6tig',
features_label: 'Funktionen',
features_title: 'Alles, was euer Haushalt braucht',
@@ -855,7 +863,7 @@ cp .env.example .env # set SESSION_SECRET and DB_ENCRY
phil_open_desc: 'MIT-lizenziert. Einsehen, anpassen, erweitern, beitragen. Offen gebaut f\u00fcr Familien, die Transparenz sch\u00e4tzen.',
setup_label: 'Loslegen',
setup_title: 'In Minuten einsatzbereit',
- setup_note: 'Dann http://localhost:3000 \u00f6ffnen und einloggen. Build aus dem Quellcode oder HTTPS einrichten? Die Installationsanleitung erkl\u00e4rt alle Optionen.',
+ setup_note: 'Dann http://localhost:3000 \u00f6ffnen und einloggen. Schritt-f\u00fcr-Schritt-Anleitung, HTTPS oder Hilfe bei Problemen? Zur Installationsanleitung.',
footer_heart: 'Mit Sorgfalt gebaut f\u00fcr Familien, die Privatsph\u00e4re und Einfachheit sch\u00e4tzen.',
footer_contrib: 'Mitmachen'
}
diff --git a/docs/install.html b/docs/install.html
new file mode 100644
index 0000000..b2cfe83
--- /dev/null
+++ b/docs/install.html
@@ -0,0 +1,1179 @@
+
+
+
+
+
+ + + Installation +
+Get your self-hosted family planner running in a few minutes. No programming experience required โ just Docker.
+Before you start
+Oikos runs as a Docker container โ you don't need to install Node.js or any other runtime. Just Docker, and you're good to go.
+Packages the app so you don't need to install anything else. Free for personal use.
+ +A command-line interface to type a few commands. Built into every OS โ no extra install needed.
+256 MB RAM minimum. Runs on a Raspberry Pi, NAS, home server, or any desktop machine.
+Step by step
+Open your terminal and run these two commands. They download the Docker configuration and the template for your settings.
+Copy the template to create your own settings file. Then open .env in a text editor and set the two required secrets.
Generate a secure value for each secret by running this command twice โ paste one result as SESSION_SECRET and one as DB_ENCRYPTION_KEY:
.env file somewhere safe. If you lose the DB_ENCRYPTION_KEY, your data cannot be recovered.
+ Docker will automatically download the Oikos image and start it in the background. The first download takes a minute.
+You can verify it's running by checking the logs:
+Server lรคuft auf Port 3000. Press Ctrl+C to stop following logs โ the container keeps running.
+ Run the interactive setup wizard to create the first user account. You'll be asked for a username, display name, and password.
+Copy the template to create your own settings file. Then open .env in a text editor and set the two required secrets.
Generate a secure value for each secret โ run this twice:
+The --build flag compiles the Docker image locally. This takes a few minutes the first time.
Run the interactive setup wizard to create the first user account. You'll be asked for a username, display name, and password.
+Open your browser and navigate to:
+Log in with the admin credentials you just created. You can add more family members from the Settings page.
+ +Configuration
+These two variables in your .env file are mandatory. Everything else is optional.
openssl rand -hex 32 to generate a secure value.openssl rand -hex 32. Back this up โ without it, data is unrecoverable.Optional
+Once Oikos is running, you can set up these extras. All are configured in your .env file.
Want to reach Oikos from other devices or the internet? Set up Nginx as a reverse proxy with a free Let's Encrypt SSL certificate. Guide โ
+Show the local weather on the dashboard. Set OPENWEATHER_API_KEY and OPENWEATHER_CITY โ free API key from openweathermap.org.
Two-way sync with Google Calendar (OAuth) and Apple iCloud (CalDAV). Set the relevant GOOGLE_* or APPLE_* variables. Guide โ
Add a daily cron job to back up your database. All data lives in the oikos_data Docker volume. Guide โ
Pull the latest image and restart: docker compose pull && docker compose up -d. Your data persists across updates.
Troubleshooting
+Most issues have a simple fix. Check below โ if you're still stuck, open an issue on GitHub.
+Another application is using port 3000. Either stop the conflicting process, or change the port in docker-compose.yml:
Or edit docker-compose.yml and change 3000:3000 to e.g. 8080:3000.
Add your user to the Docker group, then log out and back in:
+Check the container status and logs:
+Accessing from another device? Check your firewall rules.
+The DB_ENCRYPTION_KEY in your .env is missing or doesn't match the key used when the database was created. If this is a fresh install, you can reset:
docker compose down -v deletes all data. Only use this on a fresh install with no data.
+ Nginx can't reach the container. Check that it's running and the port matches:
+Ensure the proxy_pass port in your Nginx config matches the host port in docker-compose.yml (default: 3000).