{"id":19045710,"url":"https://github.com/phpmyadmin/website","last_synced_at":"2025-04-05T16:08:15.530Z","repository":{"id":863103,"uuid":"3358601","full_name":"phpmyadmin/website","owner":"phpmyadmin","description":"phpMyAdmin's website generator","archived":false,"fork":false,"pushed_at":"2025-03-26T13:08:22.000Z","size":43555,"stargazers_count":47,"open_issues_count":15,"forks_count":101,"subscribers_count":19,"default_branch":"master","last_synced_at":"2025-03-29T15:07:56.532Z","etag":null,"topics":["django","phpmyadmin","python","website"],"latest_commit_sha":null,"homepage":"https://www.phpmyadmin.net/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/phpmyadmin.png","metadata":{"files":{"readme":"README.rst","changelog":"news/__init__.py","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"security/__init__.py","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2012-02-05T09:46:30.000Z","updated_at":"2025-03-26T13:08:27.000Z","dependencies_parsed_at":"2024-07-13T21:21:42.403Z","dependency_job_id":"129b2968-e42e-4f25-8521-1863f110e79e","html_url":"https://github.com/phpmyadmin/website","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phpmyadmin%2Fwebsite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phpmyadmin%2Fwebsite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phpmyadmin%2Fwebsite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phpmyadmin%2Fwebsite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phpmyadmin","download_url":"https://codeload.github.com/phpmyadmin/website/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247361690,"owners_count":20926643,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django","phpmyadmin","python","website"],"created_at":"2024-11-08T22:51:09.771Z","updated_at":"2025-04-05T16:08:15.511Z","avatar_url":"https://github.com/phpmyadmin.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Website for phpMyAdmin\n======================\n\nDjango code for phpMyAdmin's website.\n\n.. image:: https://github.com/phpmyadmin/website/actions/workflows/tests.yml/badge.svg?branch=master\n    :alt: Tests\n    :target: https://github.com/phpmyadmin/website/actions/workflows/tests.yml?query=branch%3Amaster\n\n.. image:: https://codecov.io/github/phpmyadmin/website/coverage.svg?branch=master\n    :target: https://codecov.io/github/phpmyadmin/website?branch=master\n\nRequirements\n------------\n\nWebsite needs Python 3.7, additional dependencies are listed in `requirements.txt`.\n\n\nSecurity announcements and news\n-------------------------------\n\nEdit announcements and news entries in the web UI.\n\nSecurity issues are not publicly visible as long as they are marked as draft.\nThey are accessible through a separate URL (you can click `View on the site` link\nwhile editing).\n\n\nPage generating\n---------------\n\nEach page has its own template. For most things it means inclusion of\nother templates to generate full page.\n\nMenu\n----\n\nMenu is configured in data/menu.py, the first element always means page name\nsecond menu item title.\n\n\nThemes\n------\n\nThemes require additional metadata, which is stored in data/themes.py.\n\n\nAwards\n------\n\nAll awards are listed in data/awards.py.\n\n\nScreenshots\n-----------\n\nAll screenshots are listed in data/screenshots.py.\n\n\nDevelopment\n-----------\n\nFor development, first install dependencies. The ones needed for running the\nserver are listed in ``requirements.txt``, for running testsuite in\n``requirements-test.txt``. You can install them using your distribution (the\npackage names will usually add python- prefix) or using pip:\n\n.. code-block:: sh\n\n    pip install -r requirements-test.txt\n\nYou will need to apply migrations before loading test data:\n\n.. code-block:: sh\n\n    ./manage.py migrate\n\nYou might want to import some data to have at least some content on the website:\n\n.. code-block:: sh\n\n    ./manage.py loaddata pmaweb/fixtures/test_data.json\n\nOnce you have all dependencies, you can start the development server:\n\n.. code-block:: sh\n\n    ./manage.py runserver\n\nIt will listen on port 8000 by default (or use: `./manage.py runserver 127.0.0.1:8080` for a different port).\n\nTo run the test-suite execute:\n\n.. code-block:: sh\n\n    ./manage.py test\n\nTo add a new user (for `/admin/`):\n\n.. code-block:: sh\n\n    ./manage.py createsuperuser\n\nDeployment\n----------\n\nCron jobs:\n\n.. code-block:: sh\n\n    # Update translation stats\n    ./manage.py fetch_translations\n    # Update planet posts\n    ./manage.py fetch_planet\n\nFile releases scan:\n\n.. code-block:: sh\n\n    # Import new releases from file storage\n    ./manage.py import_files\n    # Import new themes from file storage\n    ./manage.py import_themes\n\nLicense\n-------\n\nThe website generator is licensed under GNU GPL version 2 or later.\n\nWebsite itself uses some MIT licensed Javascript libraries:\n\n* jQuery \u003chttps://jquery.com/\u003e\n* Bootstrap \u003chttps://getbootstrap.com/\u003e\n* Colorbox \u003chttps://www.jacklmoore.com/colorbox/\u003e\n\nThe website content is licensed under Creative Commons\nAttribution-Noncommercial-Share Alike 3.0 Unported License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphpmyadmin%2Fwebsite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphpmyadmin%2Fwebsite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphpmyadmin%2Fwebsite/lists"}