Skip to content

Commit

Permalink
new file: localbuild.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jwillmartin committed Dec 4, 2023
1 parent d1eda9f commit f0f706f
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions localbuild.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/bin/bash

directory=$(pwd)

# install dependencies
$directory/scripts/install_dependencies.sh

# build out ext components
cd $directory/ext/
./build.sh

cp $directory/container/wait-for-it.sh /usr/local/bin/
cp $directory/container/service.sh /usr/local/bin/

cd $directory/container/
./database.sh
./library.sh
ldconfig

# build internal components
cd $directory/src/
./build.sh release
ldconfig
$directory/scripts/deployment_dependencies.sh

# package plugins
cd $directory/src/v2i-hub/
./package_plugins.sh
$directory/container/setup.sh

# start
/usr/local/bin/service.sh

0 comments on commit f0f706f

Please sign in to comment.