Skip to content

Commit

Permalink
optimised the system installation process
Browse files Browse the repository at this point in the history
  • Loading branch information
aurthurm committed Aug 6, 2023
1 parent bd75168 commit 140b2cb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sudo apt install libcairo2-dev pkg-config python3-dev gcc g++;
pip install -r requirements-dev.txt;
pnpm i;
pnpm al:upgrade;
1 change: 1 addition & 0 deletions os-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
libcairo2-dev pkg-config python3-dev gcc g++
4 changes: 4 additions & 0 deletions postgres-db-setup.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sudo -u postgres psql
create database felicity_lims;
create user felicity with encrypted password 'felicity';
grant all privileges on database felicity_lims to felicity;
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ PyPDF2==3.0.1
reportlab==4.0.0
fhir.resources==7.0.0
httpx==0.24.0
importlib-metadata~=6.0.0
opentelemetry-instrumentation-fastapi==0.38b0
opentelemetry-exporter-otlp==1.17.0
opentelemetry-instrumentation-logging==0.38b0
Expand Down

0 comments on commit 140b2cb

Please sign in to comment.