Skip to content

Commit

Permalink
Merge pull request #33 from geoCML/smarter-recommendation-algo
Browse files Browse the repository at this point in the history
Smarter recommendation algo
  • Loading branch information
TristanDamron authored Nov 29, 2024
2 parents c2e6096 + c07f5b9 commit 456edce
Show file tree
Hide file tree
Showing 10 changed files with 263 additions and 394 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.txt filter=lfs diff=lfs merge=lfs -text
9 changes: 9 additions & 0 deletions Dockerfiles/Dockerfile.drgon-server
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,17 @@ RUN bash nodesource_setup.sh
RUN rm nodesource_setup.sh
RUN apt install -y nodejs

# Install build essentials
RUN apt install -y build-essential

# Install npm dependencies
RUN npm i

# Remove build essentials
RUN apt remove -y build-essential

# Remove install cache
RUN apt clean autoclean && apt autoremove -y && rm -rf /var/lib/{apt,dpkg,cache,log}/

# Start DRGON server
CMD npm run start
1 change: 0 additions & 1 deletion ansible-playbooks/drgon-postgres-playbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
community.postgresql.postgresql_table:
table: registry
columns:
- id bigint
- url text primary key
- title text
- description text
Expand Down
Loading

0 comments on commit 456edce

Please # to comment.