Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/simplicitesoftware/resources
Platform resources
https://github.com/simplicitesoftware/resources
Last synced: about 14 hours ago
JSON representation
Platform resources
- Host: GitHub
- URL: https://github.com/simplicitesoftware/resources
- Owner: simplicitesoftware
- Created: 2018-05-02T13:58:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-24T13:46:08.000Z (15 days ago)
- Last Synced: 2024-10-25T13:47:27.039Z (14 days ago)
- Language: CSS
- Size: 2.2 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Simplicité public resources
===========================Adding
------To add a resource, add a line to the `update_from_docs.sh` script
Using
-----Retrieve the files using **jsDelivr** (cf [docs](https://www.jsdelivr.com/documentation#id-github))
**Example:**
https://cdn.jsdelivr.net/gh/simplicitesoftware/resources@latest/public/appstore_apps.json
Updating
--------jsDelivr has a cache which can be purged.
1. Tag your commit with a valid incremented semver number like `v1.0.2`
2. Push the tag to github
3. Purge the URLs containing the `@latest` reference, either through curl or through [jsDelivr's UI](https://www.jsdelivr.com/tools/purge)```bash
curl -L -X POST \
https://purge.jsdelivr.net \
-H 'cache-control: no-cache' \
-H 'content-type: application/json' \
-d '{"path":[
"/gh/simplicitesoftware/resources@latest/public/appstore_demo.json",
"/gh/simplicitesoftware/resources@latest/public/appstore_apps.json",
"/gh/simplicitesoftware/resources@latest/public/appstore_tools.json"
]}'
```You **should** get a reponse like the following from jsDelivr if it worked. If not, use the UI.
```json
{
"id": "CXWDAKcejkTaas0QS",
"status": "pending",
"timestamp": "2024-03-21T16:33:50.876Z"
}
```