dda-masto-embed/README.md

69 lines
1.6 KiB
Markdown
Raw Normal View History

2020-04-23 07:01:24 +00:00
# dda-masto-embed
2020-07-03 06:38:08 +00:00
Embeds mastodon timline into a html page.
* Uses JS, **no intermediate server** required,
* 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-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-07-03 06:38:08 +00:00
and you will get sth like:
![masto-embed-example.png](doc/masto-embed-example.png)
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-07-03 06:38:08 +00:00
## dev setup
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-03 06:46:59 +00:00
git commit -am 'releasing'
git tag -am 'releasing' <version>
git push --follow-tags
2020-07-03 06:38:08 +00:00
# Bump version
vi shadow-cljs.edn
git commit -am "version bump" && git push
```