diff --git a/rockcraft/templates/django-framework/rockcraft.yaml.j2 b/rockcraft/templates/django-framework/rockcraft.yaml.j2 index d519c180e..f8f83b37e 100644 --- a/rockcraft/templates/django-framework/rockcraft.yaml.j2 +++ b/rockcraft/templates/django-framework/rockcraft.yaml.j2 @@ -2,20 +2,20 @@ name: {{name}} # see {{versioned_url}}/explanation/bases/ # for more information about bases and using 'bare' bases for chiselled rocks base: ubuntu@22.04 # the base environment for this Django application -version: '0.1' # just for humans. Semantic versioning is recommended +version: "0.1" # just for humans. Semantic versioning is recommended summary: A summary of your Django application # 79 char long summary description: | - This is {{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. + This is {{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: + amd64: + # arm64: + # ppc64el: + # s390x: # to ensure the django-framework extension functions properly, your Django project # should have a structure similar to the following with ./{{snake_name}}/{{snake_name}}/wsgi.py @@ -33,8 +33,7 @@ platforms: # +-- rockcraft.yaml extensions: - - django-framework - + - django-framework # uncomment the sections you need and adjust according to your requirements. # parts: # django-framework/dependencies: diff --git a/rockcraft/templates/flask-framework/rockcraft.yaml.j2 b/rockcraft/templates/flask-framework/rockcraft.yaml.j2 index 6738c6d0d..469e66bcf 100644 --- a/rockcraft/templates/flask-framework/rockcraft.yaml.j2 +++ b/rockcraft/templates/flask-framework/rockcraft.yaml.j2 @@ -2,20 +2,20 @@ name: {{name}} # see {{versioned_url}}/explanation/bases/ # for more information about bases and using 'bare' bases for chiselled rocks base: ubuntu@22.04 # the base environment for this Flask application -version: '0.1' # just for humans. Semantic versioning is recommended +version: "0.1" # just for humans. Semantic versioning is recommended summary: A summary of your Flask application # 79 char long summary description: | - This is {{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. + This is {{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: + 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. @@ -23,8 +23,7 @@ platforms: # see {{versioned_url}}/reference/extensions/flask-framework # for more information. extensions: - - flask-framework - + - 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.