Welcome to the CSV Download Portal, your one-stop destination for accessing a wide range of CSV databases tailored to your specific needs. This portal provides a streamlined and user-friendly interface for generating and downloading various CSV files. Whether you need comprehensive databases for Anytone devices or specific regional data, our portal ensures you have the right tools at your fingertips.
- Secure Access: Our portal ensures secure access with a login feature to protect sensitive data. Use the password "passw0rd" to access the resources.
- Intuitive Navigation: Easily navigate between different sections of the portal using the menu options. Select the required section to generate and download the desired CSV file.
- Home: Start here to get an overview of the portal's functionalities and select the desired options.
- Download Full CSV: Generate and download the complete database in CSV format. Ideal for users needing a comprehensive data set.
- Download Anytone CSV: Generate and download the full database specifically formatted for Anytone devices. Ensures compatibility and ease of use.
- Download Dutch Database: Access and download a specialized database focusing on Dutch data for Anytone devices. Perfect for users in or working with data from the Netherlands.
- Download Filtered Database: Customize your download by selecting specific countries. Generate and download a filtered database tailored to your needs.
- Login: Enter the password "password" in the login section to gain access to the portal.
- Navigation: Use the navigation menu to select the desired section:
- Home: Overview and welcome message.
- Download Full CSV: Download the complete database.
- Download Anytone CSV: Download the full database formatted for Anytone devices.
- Download Dutch Database: Download the Dutch-specific database for Anytone devices.
- Download Filtered Database: Select a country and download a filtered database.
- Generate and Download CSV: In each section, click the download button to generate and download the selected CSV file.
Our portal is designed to provide a seamless experience, ensuring you have quick and easy access to the data you need. For any questions or support, feel free to contact our helpdesk. Thank you for using the CSV Download Portal!
Soon more Readme
This is the frontend for the dmr-database in php
docker website
sudo docker run --name nginx-php-webserver-database -p 80:8080 --restart always -v $(pwd):/var/www/html trafex/php-nginx
docker compose for mariadb with adminer
version: '3.1'
services:
db: image: mariadb:10.10 restart: always environment: MARIADB_ROOT_PASSWORD: passw0rd ports: - 3306:3306 volumes: - mariadb-volume:/var/lib/mysql networks: dmrdatabasenet: ipv4_address: 172.18.0.2
adminer: image: adminer:latest restart: always ports: - 8085:8080 networks: dmrdatabasenet: ipv4_address: 172.18.0.3
php-nginx: image: trafex/php-nginx:latest restart: always ports: - 80:8080 volumes: - php-nginx-volume:/var/www/html networks: dmrdatabasenet: ipv4_address: 172.18.0.4
volumes: php-nginx-volume: external: true mariadb-volume: external: true
networks: dmrdatabasenet: driver: bridge ipam: driver: default config: - subnet: 172.18.0.0/24 gateway: 172.18.0.1