A Vue app that displays bluesky skeets in realtime as they are created.

adds link to footer and readme

+9 -42
+1 -37
README.md
··· 1 1 # bsky-realtime 2 2 3 - This template should help get you started developing with Vue 3 in Vite. 4 - 5 - ## Recommended IDE Setup 6 - 7 - [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). 8 - 9 - ## Type Support for `.vue` Imports in TS 10 - 11 - TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. 12 - 13 - ## Customize configuration 14 - 15 - See [Vite Configuration Reference](https://vite.dev/config/). 16 - 17 - ## Project Setup 18 - 19 - ```sh 20 - npm install 21 - ``` 22 - 23 - ### Compile and Hot-Reload for Development 24 - 25 - ```sh 26 - npm run dev 27 - ``` 28 - 29 - ### Type-Check, Compile and Minify for Production 30 - 31 - ```sh 32 - npm run build 33 - ``` 34 - 35 - ### Lint with [ESLint](https://eslint.org/) 36 - 37 - ```sh 38 - npm run lint 39 - ``` 3 + A Vue app that displays bluesky skeets in realtime as they are created. It is possible to filter them by user(s) and/or keyword(s).
+8 -5
src/components/AppFooter.vue
··· 1 1 <template> 2 2 <footer> 3 - Please note, that I don't have any power over what is displayed here. Be aware that some skeets 4 - might be harmful or offensive and even illegal. I can't take any responsibility for it. 5 - <a href="https://bsky.app/profile/did:plc:ar7c4by46qjdydhdevvrndac" target="_blank" 6 - >If you want to report any skeet please contact the bluesky moderation team.</a 7 - > 3 + <p> 4 + Please note, that I don't have any power over what is displayed here. Be aware that some 5 + skeets might be harmful or offensive and even illegal. I can't take any responsibility for it. 6 + <a href="https://bsky.app/profile/did:plc:ar7c4by46qjdydhdevvrndac" target="_blank" 7 + >If you want to report any skeet please contact the bluesky moderation team.</a 8 + > 9 + </p> 10 + <p>(c) 2025 <a href="https://github.com/vinerima/bsky-realtime" target="_blank">vinerima</a></p> 8 11 </footer> 9 12 </template> 10 13