CI / backend (pull_request) Canceled after 0s
CI / shell (pull_request) Canceled after 0s
CI / frontend (pull_request) Canceled after 0s
CI / arm64-smoke (pull_request) Canceled after 0s
CI / backend (push) Canceled after 0s
CI / shell (push) Canceled after 0s
CI / frontend (push) Canceled after 0s
CI / arm64-smoke (push) Canceled after 0s
12 lines
327 B
Batchfile
12 lines
327 B
Batchfile
@echo off
|
|
setlocal
|
|
cd /d "%~dp0"
|
|
|
|
py -3 -m venv .venv
|
|
call ".venv\Scripts\python.exe" -m pip install --upgrade pip
|
|
call ".venv\Scripts\python.exe" -m pip install -r requirements.txt
|
|
|
|
if not exist "config.yaml" copy /Y "config.example.yaml" "config.yaml" >nul
|
|
|
|
echo Installeret. Rediger config.yaml og start med run-windows.bat
|