···11# bsky-realtime
2233-This template should help get you started developing with Vue 3 in Vite.
44-55-## Recommended IDE Setup
66-77-[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
88-99-## Type Support for `.vue` Imports in TS
1010-1111-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.
1212-1313-## Customize configuration
1414-1515-See [Vite Configuration Reference](https://vite.dev/config/).
1616-1717-## Project Setup
1818-1919-```sh
2020-npm install
2121-```
2222-2323-### Compile and Hot-Reload for Development
2424-2525-```sh
2626-npm run dev
2727-```
2828-2929-### Type-Check, Compile and Minify for Production
3030-3131-```sh
3232-npm run build
3333-```
3434-3535-### Lint with [ESLint](https://eslint.org/)
3636-3737-```sh
3838-npm run lint
3939-```
33+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
···11<template>
22 <footer>
33- Please note, that I don't have any power over what is displayed here. Be aware that some skeets
44- might be harmful or offensive and even illegal. I can't take any responsibility for it.
55- <a href="https://bsky.app/profile/did:plc:ar7c4by46qjdydhdevvrndac" target="_blank"
66- >If you want to report any skeet please contact the bluesky moderation team.</a
77- >
33+ <p>
44+ Please note, that I don't have any power over what is displayed here. Be aware that some
55+ skeets might be harmful or offensive and even illegal. I can't take any responsibility for it.
66+ <a href="https://bsky.app/profile/did:plc:ar7c4by46qjdydhdevvrndac" target="_blank"
77+ >If you want to report any skeet please contact the bluesky moderation team.</a
88+ >
99+ </p>
1010+ <p>(c) 2025 <a href="https://github.com/vinerima/bsky-realtime" target="_blank">vinerima</a></p>
811 </footer>
912</template>
1013