3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-29 00:15:00 +02:00
Go to file
2019-04-02 11:13:11 -04:00
c++/app4triqs add float-cast-overflow and float-divide-by-zero to ubsan checks 2018-11-26 12:04:35 -05:00
doc Make generation of generated docs optional through docs_cpp2rst target 2019-04-02 11:13:11 -04:00
python/app4triqs Major update and Cleaning 2018-03-25 19:21:18 +02:00
share Adjust cmake-related install dirs to more standard directories 2018-11-28 13:02:26 -05:00
test Minor correction to 759bb9d 2018-11-29 10:46:57 -05:00
.clang-format First draft of the triqs application skeleton 2018-03-22 18:16:10 +01:00
.clang-tidy Further cleanining, switching to static library 2018-03-26 00:31:39 +02:00
.dockerignore Add .dockerignore 2018-06-01 11:12:35 -04:00
.travis.yml [travis] avoid apt-get install failure, add ubsan options 2018-04-24 22:34:41 +02:00
ChangeLog.md [doc] Fix few doc problems, add changelog 2018-06-03 22:28:55 -04:00
CMakeLists.txt [cmake] Define version numbers explicitly 2019-03-05 15:19:57 -05:00
Dockerfile [jenkins] Add CTEST_OUTPUT_ON_FAILURE=1 2018-11-29 14:20:35 -05:00
Jenkinsfile [jenkins] Adjust email adressses for jenkins reports 2019-02-21 11:00:59 -05:00
LICENSE Initial commit 2018-03-22 15:33:59 +01:00
README.md Minor fixes and adjustments 2018-08-30 18:07:35 -04:00

app4triqs

An example application using cpp2py and triqs

To use this skeleton for a new triqs application, the following steps are necessary:

git clone https://github.com/triqs/app4triqs --branch unstable mynewapp
cd mynewapp
git remote set-url origin https://github.com/myuser/mynewapp
find . -type f | grep -v .git | xargs sed -i 's/app4triqs/mynewapp/g; s/APP4TRIQS/MYNEWAPP/g'
find . | grep -v .git | xargs rename 's/app4triqs/mytriqsapp/'
git add -A
git commit -m "Create mynewapp from github.com/triqs/app4triqs skeleton"
git push

If you prefer to use the SSH interface to the remote repository, replace the http link accordingly

https://github.com/myuser/mynewapp   -->   git@github.com:myuser/mynewapp