JordieB / lippy

MIT License
0 stars 0 forks source link

[Feature Request] [MVP] Lambda startup script #8

Closed JerrickB closed 11 months ago

JerrickB commented 1 year ago

Summary: Manual start-up takes time and is tedious due to how many things need setup. Create script to automate start-up process.

Definition done: One line start-up procedure

Notes:

JerrickB commented 12 months ago

General script created. Does not init model downloads

#! /usr/bin/bash
sudo apt-get update --fix-missing
sudo apt-get install -f
sudo apt-get clean
sudo apt-get autoclean
sudo apt-get autoremove
sudo apt-get upgrade
mkdir Tehas
git clone https://github.com/JordieB/lippy.git Tehas/lippy
pip install -e ./Tehas/lippy/home/ubuntu/setup.sh
bash ./Tehas/lippy/install_dependencies.sh
JerrickB commented 11 months ago

Jordie created a better start up script and pushed it to the repo.