Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Smarter recommendation algo #33

Merged
merged 4 commits into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading