24 lines
517 B
Batchfile
24 lines
517 B
Batchfile
@echo off
|
|
echo Building @stock-bot/config library...
|
|
|
|
cd /d g:\repos\stock-bot
|
|
echo Installing dependencies...
|
|
bun install
|
|
|
|
echo Running type check...
|
|
cd /d g:\repos\stock-bot\libs\config
|
|
bun run type-check
|
|
|
|
echo Running tests...
|
|
bun test
|
|
|
|
echo Setting up example configuration...
|
|
copy .env.example .env
|
|
|
|
echo Running example to display configuration...
|
|
bun run src/example.ts
|
|
|
|
echo.
|
|
echo Configuration library setup complete!
|
|
echo.
|
|
echo You can now import @stock-bot/config in your services.
|