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
| Connect to jasmin: | |
| $ telnet 127.0.0.1 8990 | |
| $ jcliadmin | |
| $ jclipwd | |
| List mt interceptor in cli: | |
| $ mtinterceptor -l | |
| Adicionar novo: | |
| $ mtinterceptor -a |
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
| To show only running containers use: | |
| $ docker ps | |
| h docker 1.3, there is a new command docker exec. | |
| This allows you to enter a running docker: | |
| $ docker exec -it [container-id] bash |
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
| List Containers that are running: | |
| $ docker ps | |
| Enter a running docker: | |
| $ docker exec -it [container-id] bash |
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
| Displays active TCP connections specified by Protocol: | |
| $ netstat -tulnp |
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
| Create entitie: | |
| php app/console doctrine:generate:entity | |
| - The entity shorcute name: CoreUserBundle:User | |
| - Configuration format (yml, xml, php, or annotation): use default | |
| - Introduce fieldsnames | |
| - Do you want to generate an empty repository class: use default |
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
| Create bundle symfony: | |
| php app/console generate:bundle | |
| - Bundle Namespace: Core/Bundle/UserBundle | |
| - Bundle Name: use default | |
| - Target directory: use default | |
| - Configuration format (yml, xml, php, or annotation): yml | |
| - Do you want to generate the whole directory structure: use default |
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
| /* to run workers */ | |
| $ workers/resque worker:start |
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
| Starting a Django Project the Right Way: | |
| https://jeffknupp.com/blog/2012/02/09/starting-a-django-project-the-right-way/ |
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
| Start with django: | |
| https://realpython.com/learn/start-django/ |
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
| You can see how in: | |
| . https://www.thepolyglotdeveloper.com/2015/01/run-nodejs-application-lamp-stack-server/ | |
| . http://www.codingtricks.biz/run-nodejs-application-apache/ |
NewerOlder