Add .gitignore and README

This commit is contained in:
2026-02-14 20:41:12 +01:00
parent e9f2b58fee
commit e21169e36a
2 changed files with 47 additions and 0 deletions

26
.gitignore vendored Normal file
View File

@@ -0,0 +1,26 @@
# Ignore sensitive and runtime files
secrets/
credentials/
*.log
*.bak
*.auto-*
openclaw.log
/media/
node_modules/
.DS_Store
/tmp/
*.pem
*.key
/home/*
# Ignore SSH private keys (just in case)
.ssh/*.pem
.ssh/*.key
.ssh/*_deploy_ed25519
# Ignore workspace build artifacts
workspace/**/build/
workspace/**/dist/
# Memory files (optional: keep them out of repo if you prefer privacy)
# memory/

21
README.md Normal file
View File

@@ -0,0 +1,21 @@
# openclaw2 workspace
This repository contains the OpenClaw workspace for Alex (Alexander Wärme).
It includes configuration files, agent definitions, and helper scripts.
Setup notes
- A deploy SSH key has been generated at ~/.ssh/openclaw_deploy_ed25519 (private) and the public key added to GitHub to allow automated pushes from the environment.
- Daily backup script: scripts/daily-commit.sh (runs via cron at 07:00 by default). It commits local changes and pushes to origin/main.
Security
- Private keys and secrets are excluded in .gitignore. Keep private keys secure and rotate them if exposed.
Contributing
- Make changes locally and push to origin/main. If remote contains changes, pull/rebase first.
Contact
- Owner: Alexander Wärme (alexpolo)