Asset-first repository for hosting, versioning, and serving reusable image resources.
Note
Project structure below is auto-generated on every push via update-readme.yml
- Centralized storage for static image assets used across projects.
- Git-based versioning for deterministic asset history and rollback.
- Lightweight structure with predictable paths for direct raw-content linking.
- Ready-to-use files for web pages and external embedding.
- License clarity via an included
MITlicense file.
Tip
Keep binary filenames stable once published to avoid breaking external links.
- Core format: static binary assets (
.png) and lightweight docs (.md). - Delivery model: GitHub repository +
raw.githubusercontent.comdirect asset URLs. - Markup:
HTML(for in-repo preview/demo viaindex.html) andMarkdownfor docs. - Version control:
Git+ GitHub workflow.
.
βββ Factorio/
β βββ Gear-silhouette-of-the-Factorio-logo.png
βββ adwmg/
β βββ pidpus-2.png
βββ readme/
β βββ readme-SVG-Banned-words_contributing.png
β βββ readme-SVG-Banned-words_readme.png
β βββ readme-SVG-Banned-words_security.png
β βββ readme-SVG-Banned-words_ΡodeofΡonduct.png
β βββ OstinUA_Looping_Donut-(1).gif
β βββ OstinUA_github_readme_v1.gif
β βββ OstinUA_github_readme_v1Donut.gif
β βββ OstinUA_github_readme_v1Donut.svg
β βββ OstinUA_github_readme_v2.gif
β βββ OstinUA_github_readme_v3.gif
β βββ OstinUA_github_readme_v4.gif
β βββ OstinUA_github_readme_v7.gif
βββ index.html
βββ LICENSE
βββ README.md
| Preview | File | Raw URL |
|---|---|---|
Gear-silhouette-of-the-Factorio-logo.png |
link |
| Preview | File | Raw URL |
|---|---|---|
pidpus-2.png |
link |
| Preview | File | Raw URL |
|---|---|---|
OstinUA_Looping_Donut-(1).gif |
link | |
OstinUA_github_readme_v1.gif |
link | |
OstinUA_github_readme_v1Donut.gif |
link | |
OstinUA_github_readme_v1Donut.svg |
link | |
OstinUA_github_readme_v2.gif |
link | |
OstinUA_github_readme_v3.gif |
link | |
OstinUA_github_readme_v4.gif |
link | |
OstinUA_github_readme_v7.gif |
link |
| Preview | File | Raw URL |
|---|---|---|
readme-SVG-Banned-words_contributing.png |
link | |
readme-SVG-Banned-words_readme.png |
link | |
readme-SVG-Banned-words_security.png |
link | |
readme-SVG-Banned-words_ΡodeofΡonduct.png |
link |
-
Flat and explicit storage layout Assets are grouped in simple directories to keep paths human-readable and predictable.
-
No runtime dependency surface The repository intentionally avoids backend services, build steps, or package managers.
-
Raw-link friendly strategy Files are stored in a way that supports direct consumption through GitHub raw links for quick integrations.
-
Documentation-first maintainability The README defines structure, usage expectations, and operational guardrails.
Important
If this repository is used as a public CDN-like source, treat path changes as breaking changes.
Warning
Do not rewrite image history aggressively in shared branches (git push --force) if downstream systems depend on commit-pinned asset URLs.
Use a direct raw URL pattern for any stored image:
https://raw.githubusercontent.com/<owner>/<repo>/<branch>/<path-to-image>
Example from this repo:
https://raw.githubusercontent.com/OstinUA/Image-storage/main/adwmg/pidpus-2.png
Caution
Prefer branch protection and reviewed PRs before replacing existing public assets.
This project is distributed under the MIT license. See LICENSE for details.