Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stucco-software/octothorp.es
Hashtags for Websites
https://github.com/stucco-software/octothorp.es
Last synced: 9 days ago
JSON representation
Hashtags for Websites
- Host: GitHub
- URL: https://github.com/stucco-software/octothorp.es
- Owner: stucco-software
- Created: 2024-04-09T07:28:10.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-10-23T21:43:26.000Z (4 months ago)
- Last Synced: 2024-10-24T10:17:40.876Z (4 months ago)
- Language: JavaScript
- Homepage: https://octothorp.es
- Size: 723 KB
- Stars: 6
- Watchers: 0
- Forks: 0
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Octothorpes
## Local Development
Start the docker container for Oxigraph:
```
❯ docker compose build
❯ docker compose up
```
Oxigraph UI:
http://0.0.0.0:7878/Start the local dev server for the Octothorpes UI:
```
❯ npm run dev
````Visit the Site UI:
http://localhost:5173/Start the static site demo server so our local octothorpes ring has a member site:
```
❯ npm run dev
```### Register a Local Ring
To add the demo site – or any other site – to the local Ring;
1. visit the Oxigraph UI.
2. Change the query URL from `http://localhost:7878/query` to `http://localhost:7878/update`
3. Past the following SPARQL query:```
PREFIX rdf:
PREFIX rdfs:
PREFIX octo:insert data {
octo:verified "true" .
rdf:type .
}
```4. Hit the big arrow 'Go' button.
## Get Unverified Domains & Challenges
```
PREFIX oc:
PREFIX rdf:
PREFIX rdfs:
PREFIX octo:select * {
?d rdf:type .
?d octo:verified "false" .
?d octo:challenge ?c .
}
```## Check if the TXT header has been added
```
❯ dig -t txt example.com +short
```