2020-04-23 07:01:24 +00:00
|
|
|
# dda-masto-embed
|
2020-07-08 19:11:13 +00:00
|
|
|
![build](https://github.com/DomainDrivenArchitecture/dda-masto-embed/workflows/build-it/badge.svg)
|
|
|
|
|
|
|
|
[<img src="https://meissa-gmbh.de/img/community/Mastodon_Logotype.svg" width=20 alt="team@social.meissa-gmbh.de"> team@social.meissa-gmbh.de](https://social.meissa-gmbh.de/@team) | [Website & Blog](https://domaindrivenarchitecture.org)
|
|
|
|
|
2020-07-03 06:38:08 +00:00
|
|
|
Embeds mastodon timline into a html page.
|
|
|
|
* Uses JS, **no intermediate server** required,
|
2020-07-08 18:57:12 +00:00
|
|
|
* example at [meissa-gmbh.de](https://meissa-gmbh.de/pages/news/)
|
2020-07-03 06:38:08 +00:00
|
|
|
* Download latest version at:
|
|
|
|
* [dda-masto-embed.js](https://domaindrivenarchitecture.org/downloads/downloads/dda-masto-embed.js)
|
|
|
|
* [dda-masto-embed.js.sha256](https://domaindrivenarchitecture.org/downloads/downloads/dda-masto-embed.js.sha256)
|
|
|
|
* [dda-masto-embed.js.sha512](https://domaindrivenarchitecture.org/downloads/downloads/dda-masto-embed.js.sha512)
|
|
|
|
* It is **OpenSource** - published under the Apache License, Version 2.0
|
2020-04-23 12:22:20 +00:00
|
|
|
|
2020-07-03 06:38:08 +00:00
|
|
|
In order to try it, just create a html like
|
|
|
|
```
|
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>masto-embed</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="masto-embed"
|
|
|
|
account_name="team"
|
|
|
|
host_url="https://social.meissa-gmbh.de">
|
|
|
|
Here the timeline will appear.
|
|
|
|
</div>
|
|
|
|
<script src="https://domaindrivenarchitecture.org/downloads/dda-masto-embed.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
```
|
2020-04-23 12:22:20 +00:00
|
|
|
|
2020-07-03 06:38:08 +00:00
|
|
|
and you will get sth like:
|
|
|
|
![masto-embed-example.png](doc/masto-embed-example.png)
|
2020-04-23 12:22:20 +00:00
|
|
|
|
2020-07-03 06:38:08 +00:00
|
|
|
Styling is up to you atmo, help is welcome :-)
|
2020-04-27 10:21:46 +00:00
|
|
|
|
2020-04-23 12:22:20 +00:00
|
|
|
|
2020-07-03 06:38:08 +00:00
|
|
|
## dev setup
|
2020-04-23 12:22:20 +00:00
|
|
|
|
2020-04-24 15:26:42 +00:00
|
|
|
```
|
2020-07-03 06:38:08 +00:00
|
|
|
npm install -g npx
|
|
|
|
npm install -g shadow-cljs
|
|
|
|
npm install -g source-map-support --save-dev
|
|
|
|
npm install
|
2020-04-24 12:42:30 +00:00
|
|
|
shadow-cljs watch frontend
|
2020-06-19 13:02:24 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
open browser at http://localhost:8080
|
|
|
|
|
|
|
|
Connect your repl for :frontend
|
|
|
|
|
|
|
|
|
2020-07-03 06:38:08 +00:00
|
|
|
## run the tests
|
2020-06-19 13:02:24 +00:00
|
|
|
|
|
|
|
```
|
2020-04-24 15:26:42 +00:00
|
|
|
shadow-cljs compile test
|
|
|
|
```
|
2020-07-03 06:38:08 +00:00
|
|
|
|
|
|
|
## releasing
|
|
|
|
### prod release
|
|
|
|
```
|
|
|
|
#adjust version
|
2020-07-08 07:25:44 +00:00
|
|
|
vi package.json
|
2020-07-08 18:42:46 +00:00
|
|
|
git commit -am 'releasing'
|
2020-07-03 06:46:59 +00:00
|
|
|
git tag -am 'releasing' <version>
|
|
|
|
git push --follow-tags
|
2020-07-03 06:38:08 +00:00
|
|
|
|
|
|
|
# Bump version
|
2020-07-08 18:42:46 +00:00
|
|
|
vi package.json
|
2020-07-03 06:38:08 +00:00
|
|
|
git commit -am "version bump" && git push
|
|
|
|
```
|