-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
399 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,9 @@ server metrics. | |
The Django extension is compatible with the ``bare``, ``[email protected]`` | ||
and ``[email protected]`` bases. | ||
|
||
The Django extension supports both synchronous and asynchronous | ||
Gunicorn workers. | ||
|
||
Project requirements | ||
==================== | ||
|
||
|
@@ -29,6 +32,11 @@ There are 2 requirements to be able to use the ``django-framework`` extension: | |
``./<Rock name with - replaced by _>/<Rock name with - replaced by _>/manage.py`` | ||
relative to the ``rockcraft.yaml`` file. | ||
|
||
For the project to make use of asynchronous Gunicorn workers: | ||
|
||
- The ``requirements.txt`` file must include ``gevent`` as a dependency. | ||
|
||
|
||
``parts`` > ``django-framework/dependencies:`` > ``stage-packages`` | ||
=================================================================== | ||
|
||
|
@@ -43,6 +51,23 @@ application. In the following example we use it to specify ``libpq-dev``: | |
# list required packages or slices for your Django application below. | ||
- libpq-dev | ||
.. _django-gunicorn-worker-selection: | ||
|
||
Gunicorn worker selection | ||
========================= | ||
|
||
If the project has gevent as a dependency, Rockcraft automatically updates the | ||
pebble plan to spawn asynchronous Gunicorn workers. | ||
|
||
When the project instead needs synchronous workers, you can override the worker | ||
type by adding ``--args django sync`` to the Docker command that launches the | ||
rock: | ||
|
||
.. code-block:: bash | ||
docker run --name django-container -d -p 8000:8000 django-image:1.0 \ | ||
--args django sync | ||
Useful links | ||
============ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,9 @@ server metrics. | |
The Flask extension is compatible with the ``bare``, ``[email protected]`` | ||
and ``[email protected]`` bases. | ||
|
||
The Flask extension supports both synchronous and asynchronous | ||
Gunicorn workers. | ||
|
||
Project requirements | ||
==================== | ||
|
||
|
@@ -25,7 +28,12 @@ There are 2 requirements to be able to use the ``flask-framework`` extension: | |
``Flask`` declared as a dependency | ||
2. The project must include a WSGI app with the path ``app:app``. This means | ||
there must be an ``app.py`` file at the root of the project with the name | ||
of the Flask object is set to ``app`` | ||
of the Flask object is set to ``app``. | ||
|
||
For the project to make use of asynchronous Gunicorn workers: | ||
|
||
- The ``requirements.txt`` file must include ``gevent`` as a dependency. | ||
|
||
|
||
``parts`` > ``flask-framework/dependencies`` > ``stage-packages`` | ||
================================================================= | ||
|
@@ -41,6 +49,23 @@ application. In the following example we use it to specify ``libpq-dev``: | |
# list required packages or slices for your flask app below. | ||
- libpq-dev | ||
.. _flask-gunicorn-worker-selection: | ||
|
||
Gunicorn worker selection | ||
========================= | ||
|
||
If the project has gevent as a dependency, Rockcraft automatically updates the | ||
pebble plan to spawn asynchronous Gunicorn workers. | ||
|
||
When the project instead needs synchronous workers, you can override the worker | ||
type by adding ``--args flask sync`` to the Docker command that launches the | ||
rock: | ||
|
||
.. code-block:: bash | ||
docker run --name flask-container -d -p 8000:8000 flask-image:1.0 \ | ||
--args flask sync | ||
``parts`` > ``flask-framework/install-app`` > ``prime`` | ||
======================================================= | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: test-name | ||
# see https://documentation.ubuntu.com/rockcraft/en/latest/explanation/bases/ | ||
# for more information about bases and using 'bare' bases for chiselled rocks | ||
base: [email protected] # the base environment for this Django application | ||
version: '0.1' # just for humans. Semantic versioning is recommended | ||
summary: A summary of your Django application # 79 char long summary | ||
description: | | ||
This is test-name's description. You have a paragraph or two to tell the | ||
most important story about it. Keep it under 100 words though, | ||
we live in tweetspace and your description wants to look good in the | ||
container registries out there. | ||
# the platforms this rock should be built on and run on. | ||
# you can check your architecture with `dpkg --print-architecture` | ||
platforms: | ||
amd64: | ||
# arm64: | ||
# ppc64el: | ||
# s390x: | ||
|
||
# to ensure the django-framework extension functions properly, your Django project | ||
# should have a structure similar to the following with ./test_name/test_name/wsgi.py | ||
# being the WSGI entry point and contain an application object. | ||
# +-- test_name | ||
# | |-- test_name | ||
# | | |-- wsgi.py | ||
# | | +-- ... | ||
# | |-- manage.py | ||
# | |-- migrate.sh | ||
# | +-- some_app | ||
# | |-- views.py | ||
# | +-- ... | ||
# |-- requirements.txt | ||
# +-- rockcraft.yaml | ||
|
||
extensions: | ||
- django-framework | ||
|
||
# uncomment the sections you need and adjust according to your requirements. | ||
# parts: | ||
# django-framework/dependencies: | ||
# stage-packages: | ||
# # list required packages or slices for your Django application below. | ||
# - libpq-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Django |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import os | ||
|
||
# Rockcraft repo doesn't need Django installed so ignore module-not-found mypy error | ||
from django.core.wsgi import get_wsgi_application # type: ignore | ||
|
||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "django_app.settings") | ||
application = get_wsgi_application() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
app = object() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: test-name | ||
# see https://documentation.ubuntu.com/rockcraft/en/latest/explanation/bases/ | ||
# for more information about bases and using 'bare' bases for chiselled rocks | ||
base: [email protected] # the base environment for this Flask application | ||
version: '0.1' # just for humans. Semantic versioning is recommended | ||
summary: A summary of your Flask application # 79 char long summary | ||
description: | | ||
This is test-name's description. You have a paragraph or two to tell the | ||
most important story about it. Keep it under 100 words though, | ||
we live in tweetspace and your description wants to look good in the | ||
container registries out there. | ||
# the platforms this rock should be built on and run on. | ||
# you can check your architecture with `dpkg --print-architecture` | ||
platforms: | ||
amd64: | ||
# arm64: | ||
# ppc64el: | ||
# s390x: | ||
|
||
# to ensure the flask-framework extension works properly, your Flask application | ||
# should have an `app.py` file with an `app` object as the WSGI entrypoint. | ||
# a `requirements.txt` file with at least the flask package should also exist. | ||
# see https://documentation.ubuntu.com/rockcraft/en/latest/reference/extensions/flask-framework | ||
# for more information. | ||
extensions: | ||
- flask-framework | ||
|
||
# uncomment the sections you need and adjust according to your requirements. | ||
# parts: # you need to uncomment this line to add or update any part. | ||
|
||
# flask-framework/install-app: | ||
# prime: | ||
# # by default, only the files in app/, templates/, static/, migrate, migrate.sh, | ||
# # migrate.py and app.py are copied into the image. You can modify the list | ||
# # below to override the default list and include or exclude specific | ||
# # files/directories in your project. | ||
# # note: prefix each entry with "flask/app/" followed by the local path. | ||
# - flask/app/.env | ||
# - flask/app/app.py | ||
# - flask/app/webapp | ||
# - flask/app/templates | ||
# - flask/app/static | ||
|
||
# you may need Ubuntu packages to build a python dependency. Add them here if necessary. | ||
# flask-framework/dependencies: | ||
# build-packages: | ||
# # for example, if you need pkg-config and libxmlsec1-dev to build one | ||
# # of your packages: | ||
# - pkg-config | ||
# - libxmlsec1-dev | ||
|
||
# you can add package slices or Debian packages to the image. | ||
# package slices are subsets of Debian packages, which result | ||
# in smaller and more secure images. | ||
# see https://documentation.ubuntu.com/rockcraft/en/latest/explanation/chisel/ | ||
|
||
# add this part if you want to add packages slices to your image. | ||
# you can find a list of packages slices at https://github.com/canonical/chisel-releases | ||
# runtime-slices: | ||
# plugin: nil | ||
# stage-packages: | ||
# # list the required package slices for your flask application below. | ||
# # for example, for the slice libs of libpq5: | ||
# - libpq5_libs | ||
|
||
# if you want to add a Debian package to your image, add the next part | ||
# runtime-debs: | ||
# plugin: nil | ||
# stage-packages: | ||
# # list required Debian packages for your flask application below. | ||
# - libpq5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Flask |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
from time import sleep | ||
|
||
from flask import Flask # pyright: ignore[reportMissingImports] | ||
|
||
app = Flask(__name__) | ||
|
||
|
||
@app.route("/") | ||
def ok(): | ||
return "ok" | ||
|
||
|
||
@app.route("/io") | ||
def pseudo_io(): | ||
sleep(2) | ||
return "ok" |
Empty file.
2 changes: 2 additions & 0 deletions
2
tests/spread/rockcraft/extension-flask-async/requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
flask | ||
gevent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
console.log("hello") |
Oops, something went wrong.