Skip to content

Commit 1dedd21

Browse files
authored
Fetched template changes (#34)
1 parent 1d9f865 commit 1dedd21

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

.copier-answers.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2-
_commit: 0.7.1
2+
_commit: 0.8.0
33
_src_path: gh:quickplates/meta
44
accountname: quickplates
55
description: React app template ⚛️

copier.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ description:
1515
reponame:
1616
type: str
1717
help: The name of the repository
18-
default: "app-{{ appname }}"
18+
default: "{{ appname }}"
1919

2020
repourl:
2121
type: str

src/CONTRIBUTING.md.jinja

+4-4
Original file line numberDiff line numberDiff line change
@@ -129,23 +129,23 @@ task update
129129

130130
## ▶️ Running
131131

132-
To run the application, you can use the following command:
132+
To run the app, you can use the following command:
133133

134134
```sh
135135
task run
136136
```
137137

138138
## 🐋 `Docker`
139139

140-
You can also run the application in a [`Docker`](https://www.docker.com) container.
140+
You can also run the app in a [`Docker`](https://www.docker.com) container.
141141

142142
To do this, just run the following command:
143143

144144
```sh
145145
task docker
146146
```
147147

148-
This will build a `Docker` image and run the application in a container.
148+
This will build a `Docker` image and run the app in a container.
149149
{%- if registry %}
150150

151151
## 📦 Releases
@@ -160,7 +160,7 @@ You can find the `GitHub Actions` workflow that does this in
160160

161161
## 🚀 Deployment
162162

163-
The application is hosted on `GitHub Pages` and can be found
163+
The app is hosted on `GitHub Pages` and can be found
164164
[here]({{ pagesurl }}).
165165

166166
It is automatically built and deployed to `GitHub Pages`

src/README.md.jinja

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1 align="center">{{ appname }} app</h1>
1+
<h1 align="center">{{ appname }}</h1>
22

33
<div align="center">
44

src/{% if pages == 'docs' %}docs{% endif %}/docs/01-Index.md.jinja

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ slug: /
33
title: Index
44
---
55

6-
# {{ appname }} app
6+
# {{ appname }}
77

88
{{ description }}
99

src/{% if pages == 'docs' %}docs{% endif %}/docusaurus.config.mts.jinja

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { themes } from "prism-react-renderer";
55
const url = new URL("{{ pagesurl }}");
66

77
const config: Config = {
8-
title: "{{ appname }} app docs",
8+
title: "{{ appname }} docs",
99
favicon: "favicon.svg?v=1",
1010

1111
url: `${url.protocol}//${url.host}`,
@@ -41,9 +41,9 @@ const config: Config = {
4141

4242
themeConfig: {
4343
navbar: {
44-
title: "{{ appname }} app docs",
44+
title: "{{ appname }} docs",
4545
logo: {
46-
alt: "{{ appname }} app docs logo",
46+
alt: "{{ appname }} docs logo",
4747
src: "logo.svg?v=1",
4848
},
4949
items: [

tests/test_docs.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ def data() -> dict[str, str]:
1515
"accountname": "foo",
1616
"appname": "foo",
1717
"description": "Example app",
18-
"reponame": "app-foo",
19-
"repourl": "https://github.com/foo/app-foo",
18+
"reponame": "foo",
19+
"repourl": "https://github.com/foo/foo",
2020
"envprefix": "FOO",
2121
"port": "5173",
2222
"paths": "true",
2323
"keyprefix": "foo",
2424
"pages": "docs",
25-
"pagesurl": "https://foo.github.io/app-foo",
25+
"pagesurl": "https://foo.github.io/foo",
2626
"releases": "false",
2727
"registry": "false",
2828
"imagename": "apps/foo",

tests/test_lint.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ def data() -> dict[str, str]:
1515
"accountname": "foo",
1616
"appname": "foo",
1717
"description": "Example app",
18-
"reponame": "app-foo",
19-
"repourl": "https://github.com/foo/app-foo",
18+
"reponame": "foo",
19+
"repourl": "https://github.com/foo/foo",
2020
"envprefix": "FOO",
2121
"port": "5173",
2222
"paths": "true",
2323
"keyprefix": "foo",
2424
"pages": "app",
25-
"pagesurl": "https://foo.github.io/app-foo",
25+
"pagesurl": "https://foo.github.io/foo",
2626
"releases": "true",
2727
"registry": "true",
2828
"imagename": "apps/foo",

0 commit comments

Comments
 (0)