2024-11-23 03:59:03 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
cd "${script_dir}"
|
|
|
|
|
|
|
|
echo "Docs directory: $script_dir"
|
|
|
|
|
2024-12-11 04:46:33 +00:00
|
|
|
export NODE_OPTIONS=--openssl-legacy-provider
|
|
|
|
|
|
|
|
npm run start -- --host 0.0.0.0
|