├── .cursorindexingignore ├── .github-pages-trigger ├── .gitignore ├── .specstory ├── .gitignore └── history │ ├── 2025-08-26_14-28Z-analyse-den-aufbau-der-app.md │ ├── 2025-08-28_11-26Z-projektanalyse-von-aufbau-und-strukturen.md │ ├── 2025-10-01_12-46Z-moderne-bootstrap-buttons-mit-symbolen.md │ ├── 2025-10-01_23-30Z-avatare-fliegen-nicht-mehr.md │ └── 2025-10-08_11-41Z-schau-gründlich-nach,-ob-die-informationen-aus-der-config-json-übverhaupt.md ├── LICENSE ├── README.md ├── config.json ├── deploy-to-cloudron.sh ├── index.html ├── mastowall-favicon.png ├── script.js └── styles.css /.cursorindexingignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstockm/mastowall/HEAD/.cursorindexingignore -------------------------------------------------------------------------------- /.github-pages-trigger: -------------------------------------------------------------------------------- 1 | # Force rebuild 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstockm/mastowall/HEAD/.gitignore -------------------------------------------------------------------------------- /.specstory/.gitignore: -------------------------------------------------------------------------------- 1 | # SpecStory explanation file 2 | /.what-is-this.md 3 | -------------------------------------------------------------------------------- /.specstory/history/2025-08-26_14-28Z-analyse-den-aufbau-der-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstockm/mastowall/HEAD/.specstory/history/2025-08-26_14-28Z-analyse-den-aufbau-der-app.md -------------------------------------------------------------------------------- /.specstory/history/2025-08-28_11-26Z-projektanalyse-von-aufbau-und-strukturen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstockm/mastowall/HEAD/.specstory/history/2025-08-28_11-26Z-projektanalyse-von-aufbau-und-strukturen.md -------------------------------------------------------------------------------- /.specstory/history/2025-10-01_12-46Z-moderne-bootstrap-buttons-mit-symbolen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstockm/mastowall/HEAD/.specstory/history/2025-10-01_12-46Z-moderne-bootstrap-buttons-mit-symbolen.md -------------------------------------------------------------------------------- /.specstory/history/2025-10-01_23-30Z-avatare-fliegen-nicht-mehr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstockm/mastowall/HEAD/.specstory/history/2025-10-01_23-30Z-avatare-fliegen-nicht-mehr.md -------------------------------------------------------------------------------- /.specstory/history/2025-10-08_11-41Z-schau-gründlich-nach,-ob-die-informationen-aus-der-config-json-übverhaupt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstockm/mastowall/HEAD/.specstory/history/2025-10-08_11-41Z-schau-gründlich-nach,-ob-die-informationen-aus-der-config-json-übverhaupt.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstockm/mastowall/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstockm/mastowall/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstockm/mastowall/HEAD/config.json -------------------------------------------------------------------------------- /deploy-to-cloudron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstockm/mastowall/HEAD/deploy-to-cloudron.sh -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstockm/mastowall/HEAD/index.html -------------------------------------------------------------------------------- /mastowall-favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstockm/mastowall/HEAD/mastowall-favicon.png -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstockm/mastowall/HEAD/script.js -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstockm/mastowall/HEAD/styles.css --------------------------------------------------------------------------------