mirror of
https://gitlab.com/2009scape/singleplayer/windows.git
synced 2026-08-01 14:39:18 -06:00
12 lines
No EOL
309 B
Batchfile
12 lines
No EOL
309 B
Batchfile
@echo off
|
|
|
|
pushd %~dp0\bin
|
|
echo Building database configuration...
|
|
mysql_install_db -d ../data
|
|
start /B mysqld.exe
|
|
timeout 2 > NUL
|
|
echo Initializing data store...
|
|
echo create database global; use global; source ../template/global.sql; | mysql -u root
|
|
taskkill /im mysqld.exe /f
|
|
popd
|
|
echo Database initialized. |