-
Notifications
You must be signed in to change notification settings - Fork 22
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
Draft
hemna
wants to merge
10
commits into
master
Choose a base branch
from
refactor-extraction
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
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
hemna
force-pushed
the
refactor-extraction
branch
9 times, most recently
from
December 10, 2024 22:36
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.
hemna
force-pushed
the
refactor-extraction
branch
from
December 11, 2024 21:25
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.
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.