3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-30 00:44:34 +02:00
Go to file
2019-08-19 18:10:26 -04:00
.github/ISSUE_TEMPLATE Add issue templates for bug and feature request 2019-05-22 17:25:28 -04:00
c++/app4triqs [cmake] Use PROJECT_GIT_HASH instead to store git hash and adjust dependent files accordingly 2019-07-16 11:54:32 -04:00
doc [doc] Update triqs links in conf.py.in 2019-08-19 18:10:26 -04:00
python/app4triqs [cmake] Install all modules by default 2019-08-06 11:14:57 -04:00
share [cmake] Exported targets should live in project namespace 2019-08-06 11:32:06 -04:00
test Correction to previous commit, run c++ tests in proper test directory 2019-08-02 14:24:45 -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 [jenkins] try to exclude large git packs from build 2019-07-31 12:13:08 -04:00
.travis.yml [travis] Switch to gcc and clang version 8, clean dependency list 2019-07-16 11:29:51 -04:00
ChangeLog.md [doc] Fix few doc problems, add changelog 2018-06-03 22:28:55 -04:00
CMakeLists.txt [cmake] Use PROJECT_GIT_HASH instead to store git hash and adjust dependent files accordingly 2019-07-16 11:54:32 -04:00
COPYING.txt Major cleaning, Synchronize project structure with qmc codes 2019-04-12 16:36:03 -04:00
Dockerfile [jenkins] Make linux builds use requirements.txt 2019-07-31 12:13:28 -04:00
Jenkinsfile Add requirements.txt for python package dependencies 2019-07-29 14:42:20 -04:00
LICENSE.txt Update License file initially copied from triqs project 2019-04-26 10:00:58 -04:00
README.md [travis] Add build-passing status image to README 2019-06-05 11:29:17 -04:00
requirements.txt Add requirements.txt for python package dependencies 2019-07-29 14:42:20 -04:00

Build Status

app4triqs

A skeleton for a TRIQS application

To adapt 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 . -type d | grep -v .git | xargs rename app4triqs mynewapp
find . -type f | grep -v .git | xargs rename app4triqs mynewapp
git add -A
git commit -m "Create mynewapp from github.com/triqs/app4triqs skeleton"
git push

Depending on which version of the rename command you are using you may need to replace the aforementioned rename commands as follows

find . -type d | grep -v .git | xargs rename 's/app4triqs/mynewapp/'
find . -type f | grep -v .git | xargs rename 's/app4triqs/mynewapp/'

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