aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParker <contact@pkrm.dev>2024-11-15 21:48:28 -0600
committerParker <contact@pkrm.dev>2024-11-15 21:48:28 -0600
commitd40548a8aff6ccbdeda5d905f4d14c21334cd0bf (patch)
tree14a179485699441b247e854bc4f6e6a85c84d3a2
parent1b1601e4c449254b114522b3c49ab4b126f89cc8 (diff)
Testing out Windows starts
-rw-r--r--dev.bat23
1 files changed, 23 insertions, 0 deletions
diff --git a/dev.bat b/dev.bat
new file mode 100644
index 0000000..b8da02c
--- /dev/null
+++ b/dev.bat
@@ -0,0 +1,23 @@
+@echo off
+
+@REM Check if node.js, python3, pip, and yarn are installed
+@echo Checking if Node.js is installed...
+node -v
+@echo Checking if Python3 is installed...
+python3 --version
+@echo Checking if pip is installed...
+pip --version
+@echo Checking if Yarn is installed...
+yarn -v
+
+@REM Run linklogger.py concurrently
+@echo Starting linklogger.py...
+start python3 linklogger.py
+
+@REM Run yarn dev concurrently
+@echo Starting yarn dev...
+cd app
+start yarn dev
+
+@REM Prevent the script from closing immediately
+pause \ No newline at end of file