https://github.com/in2code-de/bluesky
Show bluesky feed in TYPO3
https://github.com/in2code-de/bluesky
Last synced: 3 months ago
JSON representation
Show bluesky feed in TYPO3
- Host: GitHub
- URL: https://github.com/in2code-de/bluesky
- Owner: in2code-de
- Created: 2025-03-05T08:56:32.000Z (4 months ago)
- Default Branch: develop
- Last Pushed: 2025-03-08T18:35:04.000Z (4 months ago)
- Last Synced: 2025-04-05T20:51:58.041Z (3 months ago)
- Language: PHP
- Size: 1.67 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Bluesky extension
## Introduction
Simple content element to show a bluesky feed by account name for TYPO3 13 or newer.
## Screenshots
Example output of posts in frontend:

Example plugin settings in backend:

## Howto
Do you want to change the html template of the list view? Sure, you want to change it.
You can do it simply via TypoScript setup:```
plugin.tx_bluesky {
view {
templateRootPaths {
1 = EXT:sitepackage/Resources/Private/ExtensionView/Plugins/Bluesky/Templates/
}
}
}
```## Development
You can spin up a development environment for this extension using [DDEV](https://ddev.com/).
```shell
ddev start
ddev initialize
ddev restart # sometimes needed to copy configuration presets properly
```The default backend user present in the database dump has the credentials `admin` / `John3:16`.
## Changelog
| Version | Date | State | Description |
|---------|------------|---------|-----------------------------------------------------------------------------------------|
| 1.3.0 | 2025-03-08 | Feature | Also support full profile url for account id, improve placeholder text in plugin |
| 1.2.0 | 2025-03-06 | Feature | Add local development environment |
| 1.1.0 | 2025-03-05 | Feature | Autolink url in posts, don't use ascii characters as hashtags, ignore colon in hashtags |
| 1.0.1 | 2025-03-05 | Bugfix | Use default values if FlexForm is empty |
| 1.0.0 | 2025-03-05 | Task | Initial publish of the extension |