mirror of
https://github.com/godotengine/godot-website.git
synced 2025-12-31 09:48:43 +03:00
8 lines
226 B
Bash
Executable File
8 lines
226 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SERVER_HOST="${SERVER_HOST:-127.0.0.1}"
|
|
SERVER_PORT="${SERVER_PORT:-4000}"
|
|
|
|
bundle install
|
|
bundle exec jekyll serve --config _config.yml,_config.development.yml --host "$SERVER_HOST" --port "$SERVER_PORT"
|