-
Published Question
I have an application in the app platform, and I often use its console, but it is inconvenient to do it from the web version. Can I somehow connect to the console from the doctl?
1
•
•
By
kshnkvn
DigitalOcean API and CLI (doctl)
-
Published Question
I have a Python application deployed in the app platform, but I need a javascript runtime, for example a node, can I somehow install it additionally?
Accepted Answer:
👋🏼 @kshnkvn,
Support for Python + Node.js is coming soon. Currently you would either have to use a Dockerfile, or install Node.js yourself as part of the build command (as non-root) which is not ideal. We're working o...
1
•
•
By
kshnkvn
DigitalOcean App Platform
Python
Node.js
-
Published Question
I have a flask application running in gunicorn in the app platform.
Run command:
bash
gunicorn --config gconfig.py --worker-tmp-dir /dev/shm --log-level error wsgi:app
gconfig.py:
python
bind = '0.0.0.0:8080'
worker...
1
•
•
By
kshnkvn
Python
Flask
DigitalOcean App Platform
-
Published Question
I have a flask application that I am trying to run in the app of platforms with a gunicorn.
wsgi.py
```python
from app import create_app
app = create_app()
if name == 'main':
app.run()
```
gconfig.py
```python
fro...
1
•
•
By
kshnkvn
Python
Flask
DigitalOcean App Platform