Skip to content

Web application for managing APRS-IS passcode requests, written for the Django web framework in Python. Intended for use by APRS-IS server administrators.

ge0rg/aprs-passcode-web

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aprs-passcode-web

Web application for managing APRS-IS passcode requests, written for the Django web framework in Python.

Screenshots

Request form (completely unstyled--add your own css):

aprs-passcode web request form

Management interface request listing:

aprs-passcode management interface

Install

If you have Django 1.2 installed, you can run the test server with

python manage.py runserver

For a production install, follow standard Django install procedures.

Before using the email feature (activated each time Approve or Deny is clicked from the admin interface), you must configure the mail server settings at the bottom of settings.py.

Sample mail server settings for Gmail:

EMAIL_HOST = 'smtp.gmail.com'
EMAIL_HOST_USER = 'YOURUSERNAME@gmail.com'
EMAIL_HOST_PASSWORD = 'YOURPASSWORD'
EMAIL_PORT = 587
EMAIL_USE_TLS = True
EMAIL_FROM = 'YOURNAME <%s>' % EMAIL_HOST_USER

About

Web application for managing APRS-IS passcode requests, written for the Django web framework in Python. Intended for use by APRS-IS server administrators.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 96.7%
  • HTML 3.3%