Israel okon
12/04/2024, 5:50 PMKobe Sauwens
12/14/2024, 4:44 PMMichael McGarrah
12/15/2024, 10:38 PMMichael McGarrah
12/15/2024, 10:40 PMFLASK_APP
variable with the app.py
path or name <http://quiz.app|quiz.app>
?Michael McGarrah
12/15/2024, 11:13 PMploomber-cloud deploy
but I figured I could just pass a FLASK_APP variable someplace but I'm stuggling to find it.
legendary_quick_quiz
├── FAQ.md
├── LICENSE
├── README.md
├── TODO.md
├── favicon.ico
├── initial_questions.json
├── manage.py
├── ploomber-cloud.json
├── quiz
│ ├── __init__.py
│ ├── app.py
│ ├── modules
│ │ ├── __init__.py
│ │ ├── models.py
│ │ ├── routes_main.py
│ │ ├── routes_quiz.py
│ │ └── routes_settings.py
│ ├── static
│ │ ├── css
│ │ ├── images
│ │ │ └── tardis.png
│ │ └── js
│ └── templates
│ ├── default.html
│ ├── edit_categories.html
│ ├── edit_questions.html
│ ├── footer.html
│ ├── navbar.html
│ ├── quiz.html
│ ├── select_category.html
│ └── settings.html
└── requirements.txt
Michael McGarrah
12/16/2024, 12:04 AMYashvardhan Singh Ranawat
12/16/2024, 6:36 PMMichael McGarrah
12/19/2024, 9:45 PM2024-12-19T21:43:00.761000 - error checking push permissions -- make sure you entered the correct tag name, and that you are authenticated correctly, and try again: checking push permission for "<http://XYZ.dkr.ecr.REGION.amazonaws.com/shiny-haze-6453:aff4bcc3|XYZ.dkr.ecr.REGION.amazonaws.com/shiny-haze-6453:aff4bcc3>": POST <https://XYZ.dkr.ecr.REGION.amazonaws.com/v2/shiny-haze-6453/blobs/uploads/>: NAME_UNKNOWN: The repository with name 'shiny-haze-6453' does not exist in the registry with id 'XYZ'
Pedro Baptista de Castro
12/20/2024, 12:44 AMno healthy upstream
(https://wispy-resonance-8867.ploomberapp.io/)
Website said to contact on Slack.
BTW, just a headsup but the link in the Applications for Slack invitation is stale (Have an issue? Join our Slack footer). I had to go through Get support --> Join our Slack
to get an working linking.Kobe Sauwens
12/22/2024, 10:14 AMFROM python:3.11-slim-bookworm
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt --no-cache-dir
COPY . /app
CMD ["gunicorn", "app:server", "run", "--bind", "0.0.0.0:5000"]
Pedro Baptista de Castro
01/05/2025, 8:09 AMThang
01/06/2025, 3:13 AMbambang eko
01/06/2025, 3:57 PMEmil Jivishov
01/12/2025, 10:34 PMJared Thompson
01/14/2025, 6:47 PMbasic.ipynb
with this in it:
import altair as alt
import pandas as pd
source = pd.DataFrame({
'a': ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I'],
'b': [28, 55, 43, 91, 81, 53, 19, 87, 52]
})
alt.Chart(source).mark_bar().encode(
x='a',
y='b'
)
then I:
from ploomber_engine import execute_notebook
nb = execute_notebook('basic.ipynb', output_path='basic_candy.ipynb')
When I opened up basic_candy.ipynb
I could see the the cell was executed but it was empty.
When I run this manually it works fine, but I run through ploomber it has this issue. Is there something else that has to be done to get it to show rich output?Piotr Kalinowski
01/17/2025, 11:46 AMRashid Javed
01/17/2025, 1:43 PMTerence Ateya
01/28/2025, 2:33 PMTerence Ateya
01/28/2025, 3:04 PMTerence Ateya
01/28/2025, 4:12 PMsiddharth chaturvedi
02/06/2025, 6:33 PMsiddharth chaturvedi
02/06/2025, 6:33 PMElham Pilegar
02/07/2025, 4:14 PMError: package or namespace load failed for 'sf' in dyn.load(file, DLLpath = DLLpath, ...): unable to load shared object '/usr/local/lib/R/site-library/units/libs/units.so'
I tried adding the following to `install.R`: install.packages("sf", type = "source", dependencies = TRUE, configure.args = "--with-proj-lib=/usr/local/lib/")
But I still can’t deploy the app.
Could anyone guide me on how to resolve this issue? Thanks in advance!Manuel Lopes
02/08/2025, 9:46 AMRolf Freimann
02/10/2025, 6:51 PMRyan Smith
02/11/2025, 2:00 PMsagar mandal
02/12/2025, 7:43 PMMichael Magan
02/17/2025, 10:30 AMEmil Jivishov
02/18/2025, 4:32 AMSDOCA
02/18/2025, 12:19 PM