Merge pull request #4785 from ProgramFOX/rm-windows-scripts

Remove Windows build scripts
This commit is contained in:
Niklas Fiekas 2018-12-15 11:38:16 +00:00 committed by GitHub
commit d98c23aab4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 0 additions and 40 deletions

1
.gitignore vendored
View file

@ -1,6 +1,5 @@
conf/application.conf
bin/dev
bin/dev.bat
logs
project/project
project/target

View file

@ -1,16 +0,0 @@
@echo off
REM Starts a dev console to compile and run lichess.
REM
REM To edit this file, copy it to bin\dev.bat. It will not be tracked by Git.
REM
REM Usage:
REM bin\dev.bat [compile] [run]
REM Yes it needs tons of memory. Go for 4G if you have them.
set JAVA_OPTS=-Xms2048M -Xmx2560M -XX:ReservedCodeCacheSize=128m -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+ExitOnOutOfMemoryError -Dkamon.auto-start=true
REM For development without nginx.
set SERVE_ASSETS=1
sbt %*

Binary file not shown.

View file

@ -1,23 +0,0 @@
@echo off
mkdir public\compiled
set ts_apps=common chess ceval game tree chat
call yarn install --non-interactive
for %%t in (%ts_apps%) do @(
call echo Building TypeScript: %%t
call cd ui\%%t
call yarn run --non-interactive compile
call cd ..\..
)
set apps=site challenge notify learn insight editor puzzle round analyse lobby tournament tournamentSchedule tournamentCalendar simul perfStat dasher
for %%a in (%apps%) do @(
call echo Building: %%a
call cd ui\%%a
call gulp dev
call cd ..\..
)