3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-29 08:24:54 +02:00
Go to file
2018-06-03 22:28:55 -04:00
c++/app4triqs Make static analyzers optional 2018-04-06 14:36:07 +02:00
doc [doc] Fix few doc problems, add changelog 2018-06-03 22:28:55 -04:00
python/app4triqs Major update and Cleaning 2018-03-25 19:21:18 +02:00
share [cmake] Fixing usage of ubsan with Minimal RT, some cleaning 2018-04-24 23:34:14 +02:00
test [cmake] Prepend UBSan options to Env 2018-04-24 23:59:32 +02: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
.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 [deb] Adjust dependency generation 2018-06-03 13:45:57 -04:00
Dockerfile [jenkins] Remove unnecessary CPP2RST_INCLUDE flags 2018-04-10 12:01:37 -04:00
Jenkinsfile [jenkins] Remove hard-coded app name from Dockerfile 2018-04-06 11:29:06 -04:00
LICENSE Initial commit 2018-03-22 15:33:59 +01:00
README.md updating README with instructions 2018-03-28 11:00:54 +02: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 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 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