# incubator-flagon-tap **Repository Path**: mirrors_apache/incubator-flagon-tap ## Basic Information - **Project Name**: incubator-flagon-tap - **Description**: Apache Flagon Tap (Incubating) - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-22 - **Last Updated**: 2026-04-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Apache Flagon TAP (Incubating) ![Maintenance](https://img.shields.io/maintenance/no/2019) [![deprecated](http://badges.github.io/stability-badges/dist/deprecated.svg)](http://github.com/badges/stability-badges) [![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0) ## Disclaimer Apache Flagon TAP is a deprecated product and is no longer maintained. It will be retired soon. Apache TAP is part of the Flagon software stack. It's a React based app with a Django backend that allows you to access your applications' usage data via custom D3 visualizations. ## Configure TAP To run TAP via Docker, you'll have to include a secret.py file like the one below: ```python """ Secret Django settings for tap project. """ # SECURITY WARNING: keep the secret key used in production secret! MY_SECRET_KEY = '' MY_DB_NAME = 'tapdb' MY_DB_USER = 'tapuser' MY_DB_PASSWORD = '' MY_DB_HOST = 'db' MY_EMAIL_PASSWORD ='' ADMIN_EMAILS = () ``` ## Install and Run TAP on Docker Compose 1. From the project directory, build the TAP and its dependencies docker images ``` $ docker-compose build ``` 2. Start up TAP and related images ``` $ docker-compose up ``` 3. Visit TAP on localhost:8000 4. To stop services, shut down ``` $ docker-compose down ``` ## Contributing Contributions are welcome! Simply submit an issue report for problems you encounter or a pull request for your feature or bug fix. The core team will review it and work with you to incorporate. ## License TAP is released under the Apache v2.0 License. See the LICENSE and NOTICE file for more information.