├── .github └── workflows │ └── update-feed.yaml ├── .gitignore ├── README.md ├── osmosfeed.yaml └── package.json /.github/workflows/update-feed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmoscraft/osmosfeed-template/HEAD/.github/workflows/update-feed.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | public 2 | node_modules 3 | package-lock.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmoscraft/osmosfeed-template/HEAD/README.md -------------------------------------------------------------------------------- /osmosfeed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmoscraft/osmosfeed-template/HEAD/osmosfeed.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmoscraft/osmosfeed-template/HEAD/package.json --------------------------------------------------------------------------------