mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +01:00
14 lines
283 B
Bash
Executable File
14 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
|