Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atsign-foundation/at_tools
Various developer tools for use when developing with Atsign's technology
https://github.com/atsign-foundation/at_tools
atsign commons dart hacktoberfest utils
Last synced: 2 days ago
JSON representation
Various developer tools for use when developing with Atsign's technology
- Host: GitHub
- URL: https://github.com/atsign-foundation/at_tools
- Owner: atsign-foundation
- License: bsd-3-clause
- Created: 2020-10-27T11:42:57.000Z (about 4 years ago)
- Default Branch: trunk
- Last Pushed: 2024-04-22T10:10:07.000Z (7 months ago)
- Last Synced: 2024-04-22T11:27:53.778Z (7 months ago)
- Topics: atsign, commons, dart, hacktoberfest, utils
- Language: JavaScript
- Homepage: https://pub.dev/publishers/atsign.org/packages
- Size: 3.15 MB
- Stars: 23
- Watchers: 13
- Forks: 9
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: code_of_conduct.md
- Security: SECURITY.md
Awesome Lists containing this project
README
[![GitHub License](https://img.shields.io/badge/license-BSD3-blue.svg)](./LICENSE)
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/atsign-foundation/at_tools/badge)](https://securityscorecards.dev/viewer/?uri=github.com/atsign-foundation/at_tools&sort_by=check-score&sort_direction=desc)
[![OpenSSF Best Practices](https://www.bestpractices.dev/projects/8121/badge)](https://www.bestpractices.dev/projects/8121)## at_tools
This repository contains atProtocol tools for developers
building atPlatform applications who wish to utilize the authentication
methods:### standalone tools
[at_cli](./packages/at_cli) A command line tool to execute verbs on the atPlatform.
[at_cram](./packages/at_cram) The challenge–response authentication mechanism of the
atProtocol.[at_dump_atKeys](./packages/at_dump_atKeys) A command line tool to dump keys from a
.atKeys file.[at_pkam](./packages/at_pkam) The public key authentication mechanism of the
atProtocol.[at_ve_doctor](./packages/at_ve_doctor) A very simple way to test the status of the
secondaries running in the Virtual Environment. Using the
[at_server_status](https://pub.dev/packages/at_server_status) package.### Quickly build tools
Using melos, we can quickly build at_pkam, at_cram, at_cli, and at_repl via the
following commands:```bash
dart pub get
dart run melos run build-tools
```Then move the tools to a folder which you've exposed to the path for
convenience, for example:```bash
cp ./build-tools/* ~/.local/bin/
# or
sudo cp ./build-tools/* /usr/local/bin/
```