mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-06 12:18:48 +00:00
13 lines
283 B
Bash
Executable file
13 lines
283 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Install Node packages
|
|
pnpm install
|
|
|
|
python3 -m pip install -r requirements.txt
|
|
|
|
# Copy in skeleton configuration if there is no existing configuration
|
|
if [ ! -d "config/" ]; then
|
|
echo "Adding skeleton config"
|
|
mkdir config/
|
|
cp -r src/skeleton/* config
|
|
fi
|