-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into 124-fix-requirements
- Loading branch information
Showing
15 changed files
with
1,439 additions
and
2,040 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
BasedOnStyle: LLVM | ||
|
||
BreakBeforeBraces: Allman | ||
AlignTrailingComments: true | ||
IndentWidth: 4 | ||
UseTab: Never | ||
AlignAfterOpenBracket: true | ||
# Force pointers to the type for C++. | ||
DerivePointerAlignment: false | ||
PointerAlignment: Left | ||
AllowShortFunctionsOnASingleLine: Inline | ||
AllowShortIfStatementsOnASingleLine: true | ||
NamespaceIndentation: None | ||
ColumnLimit: 0 | ||
ReflowComments: true | ||
SpacesInParentheses: true | ||
|
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
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 |
---|---|---|
@@ -1,31 +1,36 @@ | ||
# Feel++ Template Project | ||
Author: Christophe Prud'homme ![GitHub](https://github.com/prudhomm) | ||
Version: v2 | ||
Christophe Prud’homme <[@prudhomm](https://github.com/prudhomm)> | ||
|
||
![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.12762669.svg) | ||
![GitHub Release](https://img.shields.io/github/v/release/feelpp/feelpp-project) | ||
![CI](https://github.com/feelpp/feelpp-project/workflows/CI/badge.svg) | ||
|
||
This repository provides a basic starting point for a Feel++ application including: | ||
|
||
- [x] Feel++ applications in C++ to use Feel++ and Feel++ toolboxes in `src` | ||
- [x] Documentation using asciidoc and antora | ||
- [x] Python Feel++ notebooks that can be downloaded from the documentation | ||
- [x] Continuous integration including tests for the C++ applications | ||
- [x] Docker image generation for the project | ||
* [x] Feel++ applications in C++ to use Feel++ and Feel++ toolboxes in `src` | ||
* [x] documentation using asciidoc and antora | ||
* [x] python Feel++ notebooks that can be downloaded from the documentation | ||
* [x] continuous integration including tests for the C++ applications | ||
* [x] docker image generation for the project | ||
|
||
The documentation for feelpp-project is available [here](https://feelpp.github.io/feelpp-project), and you can build on it for your project by enabling the [github pages](https://docs.github.com/en/pages) for your repository. | ||
The documentation for feelpp-project is available at [here](https://feelpp.github.io/feelpp-project) and you can build on it for your project by enabling the [github pages](https://docs.github.com/en/pages) for your repository. | ||
|
||
## Renaming the project | ||
|
||
By default, the project is named `feelpp-project` if you cloned the repository `feelpp/feelpp-project`. However, if you used the previous repository as a template, then the project is renamed using the name of the repository using the script `rename.sh` at the initialization of the repository. If the name does not suit you, you can change it again using the script `rename.sh` and providing the new name as an argument. | ||
By default the project is named `feelpp-project` if you cloned the repository `feelpp/feelpp-project`. | ||
However if you used the previous repository as a template, then the project is renamed using the name of the repository using the script `rename.sh` at the initialization of the repository. | ||
If the name does not suit you, you can change it again using the script `rename.sh` and providing the new name as argument. | ||
|
||
> **Warning**: The script `rename.sh` will rename the project. However, some URLs might not be set properly if you rename the project yourself. You need to check the following files: `docs/site.yml` and `docs/package.json` and fix the URLs after the rename process is done. | ||
**⚠️ WARNING**\ | ||
the script `rename.sh` will rename the project however some url might be set properly if you rename the project yourself. You need to check the following files: `docs/site.yml` and `docs/package.json` and fix the urls after the rename process is done. | ||
|
||
## Updating the project version | ||
## Updating the feelpp-project version | ||
|
||
The version of the project is defined in the files `CMakeLists.txt`, `docs/antora.yml`, and `docs/package.json`. You need to update with the same version in all files. | ||
The version of the project is defined in the files `CMakeLists.txt`, `docs/antora.yml` and `docs/package.json`. | ||
You need to update with the same version in all files. | ||
|
||
## Release process | ||
|
||
- [x] Update the version in `CMakeLists.txt` | ||
- [x] Update the version in `docs/antora.yml` | ||
- [x] Commit the changes with the message "Release vx.y.z". At this point, the CI will generate the docker image and push it to Docker Hub. | ||
* [x] update the version in CMakeLists.txt | ||
* [x] update the version in docs/antora.yml | ||
* [x] commit the changes with the message "Release vx.y.z". At this point the CI will generate the docker image and push it to docker hub |
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
Oops, something went wrong.