Skip to content

catcatio/catcat-core

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Test

With curl

curl --head https://catcat.io/.well-known/stellar.toml

To get certbot

git clone https://github.com/certbot/certbot
cd certbot
git checkout v0.22.0
sudo ./certbot-auto --os-packages-only
./tools/venv.sh
source venv/bin/activate
sudo ./certbot -d catcat.io -d *.catcat.io --manual --preferred-challenges dns-01 --server https://acme-v02.api.letsencrypt.org/directory certonly

To test federation api

With curl

curl "https://api.catcat.io/federation?q=katopz*catcat.io&type=name"

With NodeJS

var request = require('request');

request.get({
  url: 'https://api.catcat.io/federation',
  qs: {
    q: 'katopz*catcat.io',
    type: 'name'
  }
}, function(error, response, body) {
  console.log(body);
});

Releases

No releases published

Packages

No packages published