Initial commit: Hello World for Gitea

- Modern JavaScript and Python hello world
- Beautiful README with Gitea features
- Ready for pull requests and collaboration! 🚀
This commit is contained in:
Bake 2025-05-24 21:55:10 -05:00
commit cc1157f53c
3 changed files with 25 additions and 0 deletions

23
README.md Normal file
View File

@ -0,0 +1,23 @@
# Hello World - Gitea Edition
Beautiful hello world project now hosted on our modern Gitea server! 🎉
## Files
- `hello.js` - JavaScript hello world
- `hello.py` - Python hello world
- `README.md` - This file
## Features
✅ Modern Git server with dark mode
✅ Pull requests & code review
✅ Issues & project management
✅ Beautiful GitHub-like interface
## Usage
```bash
node hello.js
python3 hello.py
```
**Deployed with:** Claude + SSH MCP + Proxmox + Gitea
**Infrastructure:** Fully automated setup! 🤖

1
hello.js Normal file
View File

@ -0,0 +1 @@
console.log("Hello, World from Gitea! 🚀");

1
hello.py Normal file
View File

@ -0,0 +1 @@
print("Hello, World from Gitea! 🐍")