This file contains hidden or 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
## Basic | |
# create new project | |
oc new-app <git_project> \ | |
--source-secret=<optional_secret(basic auth + crt)> \ | |
--build-env <build_environment_variables> \ | |
--context-dir=<dir_for_dockerfile> \ | |
-o yaml > <outfile> | |
# create a secret | |
oc create secret generic <secret_name> \ |
This file contains hidden or 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
# Important options for qt's ./configure script as found in 'https://code.qt.io/qt/qt5.git' | |
./configure | |
-prefix /home/{{ sytem_user }}/Qt | |
-opensource | |
-release | |
-shared | |
-c++std c++11 | |
-nomake examples | |
-nomake tests |
NewerOlder