-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate admin web out of aprsd. #183
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d1d91a0
to
7daa28b
Compare
This patch removes the admin command out of aprsd proper. The admin interface will be an aprsd extension called aprsd-admin-extension. This is the start of the effort to trim down the base of APRSD and the commands to server, healthcheck, list_plugins, list_extensions. This will reduce the number of required packages that APRSD core needs. This is useful for others using APRSD as their base to their applications.
Webchat will now be an extension that can be installed. the extension is here: https://github.com/hemna/aprsd-webchat-extension Install it from git or pypi.
This patch removes the email plugin from APRSD core. The new home for email plugin is here: http://github.com/hemna/aprsd-email-plugin.git
Just changed the order of things to clean up.
From the list-plugins command
This eliminates the requirement for geopy library and all it's deps. The new location for the LocationPlugin is here: https://github.com/hemna/aprsd-location-plugin
This patch changes the geopy to haversine library for logging packet distances. haversine is quite a bit lighter than geopy.
5e1cc6d
to
bbdbb9a
Compare
This new collector allows external extensions and plugins to get callbacks during the keepalive thread runs. Every 60 seconds the keepalive thread will do some checks and log some entries in the logfile to keep the user/admin aware of the state of aprsd itself.
This patch changes to the ruff linter. SO MUCH quicker. Removed grey and mypy as well.
This patch fixes the list-plugins and list-extensions. Pypi changed their search page to require javascript, which breaks python scripts....
9c342f4
to
ec1adf4
Compare
Added links to aprsd-admin-extension and aprsd-webchat-extension since they are now external.
ad29dec
to
0ed648f
Compare
This patch updates the README.md file to link to existing plugins and extensions.
Updated the table of contents
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This patch removes the admin command out of aprsd proper. The admin interface will be an aprsd extension called aprsd-admin-extension.
This is the start of the effort to trim down the base of APRSD and the commands to server, healthcheck, list_plugins, list_extensions.
This will reduce the number of required packages that APRSD core needs. This is useful for others using APRSD as their base to their applications.