17 lines
337 B
Bash
17 lines
337 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||
|
cd "${script_dir}"
|
||
|
|
||
|
echo "Docs directory: $script_dir"
|
||
|
|
||
|
export NODE_OPTIONS=--openssl-legacy-provider
|
||
|
|
||
|
# cp buildchoice/coown_navbar.ts navigation/navbar.ts
|
||
|
# cp buildchoice/coown_docusaurus.config.ts docusaurus.config.ts
|
||
|
|
||
|
npm run start -- --host 0.0.0.0
|
||
|
|