Skip to content

Commit

Permalink
install package furo from PyPI
Browse files Browse the repository at this point in the history
downgrade furo

fix furo problem

attempt with new name and toml format

fly.dev fixed their deployment problems

install package furo from PyPI

downgrade furo

fix furo problem

attempt with new name and toml format

Revert "Merge branch 'main' of github.com:jrief/django-formset"

This reverts commit 1cfff3b, reversing
changes made to 6b44c7b.

install package furo from PyPI

downgrade furo

fix furo problem

attempt with new name and toml format

fix #87 Selectize losing its selected status

Selectize widget losing its selected status when filter_by is defined

revert merge artifact

remove debugging statements
  • Loading branch information
jrief committed Sep 21, 2023
1 parent e3871fb commit 170e2ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .deployment/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ RUN npm ci

# install Python specific requirements
RUN pip install django psycopg2-binary Pillow uWSGI docutils Sphinx sphinx-toolbox
RUN pip install https://github.com/pradyunsg/furo/archive/refs/heads/main.zip
RUN pip install https://github.com/jrief/django-sphinx-view/archive/refs/heads/main.zip
RUN pip install https://github.com/jrief/furo/archive/refs/heads/json-build.zip

# copy project relevant files into container
ADD assets /web/assets
Expand Down
1 change: 0 additions & 1 deletion client/django-formset/IncompleteSelect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export abstract class IncompleteSelect extends Widget {
const changedElement = event.currentTarget;
if (changedElement instanceof HTMLSelectElement) {
this.filterByValues.set(filterBy, Array.from(observedElement.selectedOptions).map(o => o.value));
console.log(this.filterByValues);
await this.reloadOptions(true);
}
});
Expand Down
21 changes: 4 additions & 17 deletions fly.toml
Original file line number Diff line number Diff line change
@@ -1,28 +1,25 @@
# fly.toml file generated for django-formset on 2022-07-30T11:44:37+02:00
# fly.toml file generated for django-formset2 on 2023-09-08T22:13:46+02:00

app = "django-formset"
app = "django-formset2"
kill_signal = "SIGINT"
kill_timeout = 5
mounts = []
processes = []

[env]
PORT = "8080"
DJANGO_WORKDIR="/web/workdir"
DJANGO_MEDIA_ROOT="/web/workdir/media"
DJANGO_STATIC_ROOT="/web/staticfiles"

[build]
dockerfile = ".deployment/Dockerfile"

[experimental]
allowed_public_ports = []
auto_rollback = true

[[services]]
http_checks = []
internal_port = 8080
processes = ["app"]
protocol = "tcp"
script_checks = []
[services.concurrency]
hard_limit = 25
soft_limit = 20
Expand All @@ -36,13 +33,3 @@ processes = []
[[services.ports]]
handlers = ["tls", "http"]
port = 443

[[services.tcp_checks]]
grace_period = "1s"
interval = "15s"
restart_limit = 0
timeout = "2s"

[mounts]
source="workdir"
destination="/web/workdir"

0 comments on commit 170e2ae

Please sign in to comment.