forked from ko4life-net/ko
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.cmd
More file actions
34 lines (27 loc) · 832 Bytes
/
config.cmd
File metadata and controls
34 lines (27 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@echo off
echo Configuring started...
set CURRENT_PATH=%~dp0
echo Allowing current user to run powershell scripts...
powershell -command "Set-ExecutionPolicy Bypass -Scope CurrentUser"
where /q git
if ERRORLEVEL 1 (
echo ERROR: Git command line tool is not installed. Please install it: https://git-scm.com/download/win
pause
exit 1
)
git submodule update --init
@REM src\All.sln
echo:
echo:
echo Configuring done.
echo:
echo You may want to to start the src\All.sln Visual Studio solution to start developing.
echo:
echo If you haven't setup the database just yet, one last manual step is needed (assuming you have any version of Microsoft SQL Server installed).
echo Run the powershell script under src\db\import.ps1 to setup the database for you.
echo:
echo:
echo Thank you and happy coding!
echo:
echo:
pause