Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/macports/macports-webapp
Web application to display information about ports, build history and installation statistics
https://github.com/macports/macports-webapp
Last synced: 3 months ago
JSON representation
Web application to display information about ports, build history and installation statistics
- Host: GitHub
- URL: https://github.com/macports/macports-webapp
- Owner: macports
- License: bsd-2-clause
- Created: 2019-03-31T06:10:21.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-07-15T07:23:16.000Z (4 months ago)
- Last Synced: 2024-07-15T22:02:09.552Z (4 months ago)
- Language: Python
- Homepage: https://ports.macports.org/
- Size: 7.7 MB
- Stars: 53
- Watchers: 38
- Forks: 25
- Open Issues: 32
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Introduction
### Goal
This is a web application that:
1. Displays general information about all the ports.
2. Fetches and displays build history of the ports.
3. Collects and displays installation statistics (system configurations and installed ports) from users who opt-in by
installing the port `mpstats`.
4. Allows following ports and receiving notifications when a port gets updated.
It aims at being an all-one-place for users to find relevant ports and for maintainers to monitor their ports and
understand their user base. The app is running in production at [ports.macports.org](https://ports.macports.org).
More info at [docs/INFORMATION.md](docs/INTRODUCTION.md)### Architecture
The web application is based on:
- [Django Framework](https://www.djangoproject.com)
- [PostgreSQL Database](https://www.postgresql.org)
- [Solr](https://lucene.apache.org/solr/)
- [Memcached](http://memcached.org)
The project has been packaged using:
- [Docker](https://www.docker.com)
- [NGINX](https://www.nginx.com)
- [uWSGI](https://uwsgi-docs.readthedocs.io/en/latest/)
- [Supervisor](http://supervisord.org)___
### More information
- [API](/docs/API_v1/ENDPOINTS.md)
- [Collection of data](/docs/SOURCES.md)
- [Deploying the app](/docs/DEPLOYMENT.md)