Skip to content

Commit 510d25a

Browse files
committed
build: rename
1 parent e826863 commit 510d25a

26 files changed

+43
-43
lines changed

.env

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
VERSION=1
22
PORT=8080
33

4-
jdbc.datasource.default=jdbc/{{ cookiecutter.instance_name_lc }}
5-
# jdbc.datasource.default=jdbc/{{ cookiecutter.instance_name_lc }}-postgres
4+
jdbc.datasource.default=jdbc/gateway2gegevenslogger
5+
# jdbc.datasource.default=jdbc/gateway2gegevenslogger-postgres

.releaserc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"assets": [
7878
"CHANGELOG.md",
7979
"src/main/resources/BuildInfo.properties",
80-
"configurations/{{ cookiecutter.configuration_name }}/BuildInfo.properties",
80+
"configurations/verwerkingenlogging-api-server/BuildInfo.properties",
8181
"publiccode.yaml"
8282
],
8383
"message": "chore(<%= nextRelease.type %>): release <%= nextRelease.version %> <%= nextRelease.channel !== null ? `on ${nextRelease.channel} channel ` : '' %>[skip ci]\n\n<%= nextRelease.notes %>"

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ Here is a checklist for testing the CI/CD.
6363
* Do a commit on main that has a commit message starting with `fix:`. The following should happen:
6464
* The pipeline succeeds - this checks all authorizations are in place.
6565
* A commit with a message starting with `chore:` has been added automatically.
66-
* The extra commit updates files `src/main/resources/BuildInfo.properties`, `configurations/{{ cookiecutter.configuration_name }}/BuildInfo.properties`, `publiccode.yaml` and `CHANGELOG.md`.
66+
* The extra commit updates files `src/main/resources/BuildInfo.properties`, `configurations/verwerkingenlogging-api-server/BuildInfo.properties`, `publiccode.yaml` and `CHANGELOG.md`.
6767
* These files should have trustworthy contents - speaks for itself.
6868
* On GitHub, there is a tag for the new version that starts with `v`. For example if the new release is `3.2.1` then the tag should be `v3.2.1`. You can get this tag using `git fetch origin` on the command line.
6969
* The docker image for the release has been created on http://www.dockerhub.com. The `latest` tag should have been updated - creation time should be the current time. Depending on the type of release, the `3.2.1`, the `3.2` or the `3` tags should be the current date.
7070
* Check on dockerhub that tags that should not have been updated do not have the current time as creation time.
71-
* Run the docker image using `docker run -p 8080:8080 wearefrank/{{ cookiecutter.configuration_name }}:3.2.1`. Check the name of the docker container you started using `docker ps -a`. Login to the docker container using `docker exec -it <container name> bash`. Check that `/opt/frank/resources/BuildInfo.properties` and `/opt/frank/configurations/{{ cookiecutter.configuration_name }}/BuildInfo.properties` contain the right version and the right date.
71+
* Run the docker image using `docker run -p 8080:8080 wearefrank/verwerkingenlogging-api-server:3.2.1`. Check the name of the docker container you started using `docker ps -a`. Login to the docker container using `docker exec -it <container name> bash`. Check that `/opt/frank/resources/BuildInfo.properties` and `/opt/frank/configurations/verwerkingenlogging-api-server/BuildInfo.properties` contain the right version and the right date.
7272
* Check a breaking change like above. This should update the major version.
7373
* Do a commit with \[skip ci\] in the commit message. It should not make a release and it should not push a docker image.
7474
* Make a pull request. Check that no release is made and that no docker image is pushed.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# {{ cookiecutter.instance_name }}
1+
# Gateway2Gegevenslogger
22

33
Project for Frank applications deployed by JAR or Docker
44

@@ -48,6 +48,6 @@ Please check if you deem all these functionalities necessary, if not remove them
4848

4949
| Template variable | Description | Example |
5050
|-------------------------------|------------------------------------------------------------------------------------------------|----------------|
51-
| `{{ cookiecutter.instance_name }}` | The name of the Frank! to be deployed. It's best to keep this inline with the name of the repo | Frank2Skeleton |
52-
| `{{ cookiecutter.instance_name_lc }}` | Lowercase version of the instance name. | frank2example |
53-
| `{{ cookiecutter.configuration_name }}` | The name of the first configuration (others have to be added manually) | Sans |
51+
| `Gateway2Gegevenslogger` | The name of the Frank! to be deployed. It's best to keep this inline with the name of the repo | Frank2Skeleton |
52+
| `gateway2gegevenslogger` | Lowercase version of the instance name. | frank2example |
53+
| `verwerkingenlogging-api-server` | The name of the first configuration (others have to be added manually) | Sans |

build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<project default="restart-{{ cookiecutter.instance_name }}">
2-
<target name="restart-{{ cookiecutter.instance_name }}">
1+
<project default="restart-Gateway2Gegevenslogger">
2+
<target name="restart-Gateway2Gegevenslogger">
33
<basename property="project.dir" file="${basedir}"/>
44
<condition property="exe" value="../frank-runner/restart.bat" else="/bin/bash">
55
<os family="windows"/>

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3.8'
33
services:
44
frank:
55
build: .
6-
image: wearefrank/{{ cookiecutter.instance_name_lc }}:${VERSION:-latest}
6+
image: wearefrank/gateway2gegevenslogger:${VERSION:-latest}
77
ports:
88
- "${PORT:-8080}:8080"
99
environment:
File renamed without changes.

docusaurus/docusaurus.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import type {Config} from '@docusaurus/types';
33
import type * as Preset from '@docusaurus/preset-classic';
44

55
const organizationName: String = 'WeAreFrank';
6-
const projectName: String = '{{ cookiecutter.instance_name_lc }}';
6+
const projectName: String = 'gateway2gegevenslogger';
77

88
const config: Config = {
9-
title: '{{ cookiecutter.instance_name }}',
9+
title: 'Gateway2Gegevenslogger',
1010
tagline: '',
1111
favicon: 'img/waf-logo-favicon-16x16.png',
1212

@@ -60,7 +60,7 @@ const config: Config = {
6060
// Replace with your project's social card
6161
image: 'img/waf-logo-192x192.png',
6262
navbar: {
63-
title: '{{ cookiecutter.instance_name }}',
63+
title: 'Gateway2Gegevenslogger',
6464
logo: {
6565
alt: 'WeAreFrank',
6666
src: 'img/waf-logo-192x192.png',

docusaurus/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docusaurus/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "{{ cookiecutter.instance_name_lc }}",
2+
"name": "gateway2gegevenslogger",
33
"version": "0.0.0",
44
"private": true,
55
"scripts": {

0 commit comments

Comments
 (0)