Changes: - Remove deprecated Fengling.Activity and YarpGateway.Admin projects - Add points processing services with distributed lock support - Update Vben frontend with gateway management pages - Add gateway config controller and database listener - Update routing to use header-mixed-nav layout - Add comprehensive test suites for Member services - Add YarpGateway integration tests - Update package versions in Directory.Packages.props Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
18 lines
772 B
SQL
18 lines
772 B
SQL
-- MySQL Initialization Script for NetCorePal Template
|
|
-- This script creates the necessary database and user for development
|
|
|
|
-- Create development database if it doesn't exist
|
|
CREATE DATABASE IF NOT EXISTS `abctemplate` CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
|
|
|
-- Create a development user (optional - you can use root for development)
|
|
-- CREATE USER IF NOT EXISTS 'devuser'@'%' IDENTIFIED BY 'devpass123';
|
|
-- GRANT ALL PRIVILEGES ON `abctemplate`.* TO 'devuser'@'%';
|
|
|
|
-- Ensure root can connect from any host (for development only)
|
|
-- ALTER USER 'root'@'%' IDENTIFIED BY '123456';
|
|
-- GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;
|
|
|
|
FLUSH PRIVILEGES;
|
|
|
|
-- Display completion message
|
|
SELECT 'MySQL initialization completed successfully' AS message; |