{"id":27976393,"url":"https://github.com/soham7777777/wallpaperz","last_synced_at":"2026-05-08T04:44:28.191Z","repository":{"id":290431480,"uuid":"974279505","full_name":"Soham7777777/Wallpaperz","owner":"Soham7777777","description":"Wallpapers web application","archived":false,"fork":false,"pushed_at":"2025-05-06T18:16:58.000Z","size":93846,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-06T19:37:00.103Z","etag":null,"topics":["django","htmx","image-processing","masonry-grid","pillow","redis-queue","wallpapers"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Soham7777777.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-28T14:26:57.000Z","updated_at":"2025-05-06T18:17:02.000Z","dependencies_parsed_at":"2025-04-28T20:29:41.826Z","dependency_job_id":"c455210b-bd78-4e89-b9ab-0e83889bf904","html_url":"https://github.com/Soham7777777/Wallpaperz","commit_stats":null,"previous_names":["soham7777777/wallpaperz"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Soham7777777%2FWallpaperz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Soham7777777%2FWallpaperz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Soham7777777%2FWallpaperz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Soham7777777%2FWallpaperz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Soham7777777","download_url":"https://codeload.github.com/Soham7777777/Wallpaperz/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252980384,"owners_count":21835227,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django","htmx","image-processing","masonry-grid","pillow","redis-queue","wallpapers"],"created_at":"2025-05-08T01:26:11.516Z","updated_at":"2026-05-08T04:44:28.186Z","avatar_url":"https://github.com/Soham7777777.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🖼️ Wallpaperz\n\nWelcome to **Wallpaperz** — a simple and powerful web app where users can explore, download, and share wallpapers for their screens.\n\n---\n\n## 📖 Introduction\n\nWallpaperz is a web-based application that allows users to:\n\n- 🧑‍🎨 Upload their own wallpapers\n- 🗂️ Create and manage categories\n- 📥 Download high-quality wallpapers\n\nThe project uses the **truly RESTful** API based on **[HATEOAS](https://htmx.org/essays/hateoas/)**(Hypermedia as the engine of application state) architecture. That means the frontend doesn’t need to know anything about the server's internal workings. It just follows HTML links and forms — like a web browser should! This makes the client fully decoupled from the server.\n\nAll communication between the frontend and backend is done using HTML, making it simple yet very effective.\n\n---\n\n## 🧰 Tech Stack\n\n### 💻 Frontend\n\n- ⚡ [htmx](https://htmx.org/) — Dynamic HTML interactions\n- 🧠 [Alpine.js](https://alpinejs.dev/) — Reactive components\n- 🎨 [Bootstrap](https://getbootstrap.com/) — Layout and styling\n- 🌐 [Vanilla JavaScript](http://vanilla-js.com/) — Custom logic\n\n### 🗄️ Backend\n\n- 🐍 [Django](https://www.djangoproject.com/) — Robust [Python](https://www.python.org/) web framework\n- 🖼️ [Pillow](https://python-pillow.org/) — Image processing (e.g. image compression)\n- 💾 [SQLite](https://www.sqlite.org/) - Database\n\n---\n\n## 📸 Screenshots\n\n\u003e _Coming soon!_ 🔧🧪  \nI am working on capturing some awesome screenshots of the app in action. Stay tuned! 👀\n\n---\n\n# 🐍 Django Project Setup Guide\n\nFollow this guide to set up and run this Django project locally.\n\nClone the repository and go to directory:\n```\ngit clone https://github.com/Soham7777777/Wallpaperz.git\ncd Wallpaperz\n```\n\n---\n\n## ✅ 1. (Optional but Recommended) Create a Virtual Environment\n\nUsing a virtual environment helps isolate project's dependencies.\n\n### For Windows:\n```bash\npython -m venv .venv\n.venv\\Scripts\\activate\n```\n\n### For Linux/macOS:\n```bash\npython3 -m venv .venv\nsource .venv/bin/activate\n```\n\n\n## 📦 2. Install Dependencies\n\nAfter activating your virtual environment, install all required packages:\n\n```bash\npip install -r requirements.txt\n```\n\n\n## 🛠️ 3. Create a .env File\n\nIn the root directory of project, create a file named .env.\n\n```bash\nSECRET_KEY = 'ANY RANDOM SECRET STRING'\n```\n\n\n## 🔧 4. Apply Migrations\n\n```bash\npython manage.py migrate\n```\n\n\n## 🚀 5. Run the Development Server\n\nStart the Django development server:\n\n```bash\npython manage.py runserver\n```\n\nNow, open your browser and go to: `http://localhost:8000`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoham7777777%2Fwallpaperz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsoham7777777%2Fwallpaperz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoham7777777%2Fwallpaperz/lists"}