mirror of
https://github.com/php/web-master.git
synced 2026-03-24 07:42:20 +01:00
remove-github-managing-tool
This tool is no longer in use, and it is also not working.
PHP user management system
Docker
docker-compose up --build
You can reset the data volumes using docker-compose down -v.
Manual
git submodule update --init
# Create database and users:
CREATE DATABASE phpmasterdb;
CREATE USER 'nobody'@'localhost';
GRANT ALL PRIVILEGES ON phpmasterdb.* TO 'nobody'@'localhost';
# Create tables
mysql -unobody phpmasterdb < schema.sql
# Create user test:test
INSERT INTO users (username, svnpasswd, cvsaccess) VALUES ('test', '$2y$10$iGHyxmfHI62Xyr3DPf8faOPCvmU1UMVMlhJQ/FqooqgPJ3STMHTyG', 1);
# Run server (must have mysql ext)
php -S localhost:8000 -d include_path="$PWD/include/" -derror_reporting="E_ALL&~E_DEPRECATED" -t public
Description
⚠️ ARCHIVED: Original GitHub repository no longer exists. Preserved as backup on 2026-01-22T16:26:16.017Z
Languages
PHP
93.9%
JavaScript
6%