What it serves
One place for everything static
Instead of shipping assets with every project, they all live in one tidy, cacheable spot.
Website assets
The mascot art, icons, social images and markdown content for this very site are all grouped under /relaxy/website.
Bot assets
Shared images the Discord bot renders and reuses live under /relaxy/common, fetched on demand.
Music & media
Audio and media files the music engine leans on are kept under /relaxy/music, close to the bot.
How it's laid out
The directory tree
Read live from the CDN itself. This is walked straight off cdn.relaxy.xyz, so that it never falls out of date.
cdn.relaxy.xyz/ ├── favicon.ico └── relaxy/ ├── website/ # everything this site uses │ ├── icons/ # favicon │ ├── img/ │ │ ├── mascot/ # Relaxy character art │ │ ├── social/ # og-image, top.gg badge │ │ └── people/ # owner / supporter / collab art │ ├── scripts/ # commands.js, marked.min.js │ └── text/ # changelog, devlog, upcoming ├── common/ # shared bot images └── music/ # audio & media assets