3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-29 00:15:00 +02:00
Go to file
2019-04-12 16:36:03 -04:00
c++/app4triqs Major cleaning, Synchronize project structure with qmc codes 2019-04-12 16:36:03 -04:00
doc Major cleaning, Synchronize project structure with qmc codes 2019-04-12 16:36:03 -04:00
python/app4triqs Major cleaning, Synchronize project structure with qmc codes 2019-04-12 16:36:03 -04:00
share Major cleaning, Synchronize project structure with qmc codes 2019-04-12 16:36:03 -04:00
test Major cleaning, Synchronize project structure with qmc codes 2019-04-12 16:36:03 -04: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 Major cleaning, Synchronize project structure with qmc codes 2019-04-12 16:36:03 -04:00
COPYING.txt Major cleaning, Synchronize project structure with qmc codes 2019-04-12 16:36:03 -04: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.txt Major cleaning, Synchronize project structure with qmc codes 2019-04-12 16:36:03 -04: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