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
| #!/bin/bash | |
| curl https://raw.githubusercontent.com/liferay/liferay-blade-cli/master/cli/installers/local | sh | |
| echo 'export PATH="$PATH:$HOME/Library/PackageManager/bin"' >> ~/.zshrc | |
| source ~/.zshrc |
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
| <!-- | |
| TCP based stack, with flow control and message bundling. This is usually used when IP | |
| multicasting cannot be used in a network, e.g. because it is disabled (routers discard | |
| multicast). Note that TCP.bind_addr and TCPPING.initial_hosts should be set, possibly | |
| via system properties, e.g. -Djgroups.bind_addr=192.168.5.2 and | |
| -Djgroups.tcpping.initial_hosts=192.168.5.2[7800] | |
| author: Bela Ban | |
| --> | |
| <config xmlns="urn:org:jgroups" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
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
| default_view: tools | |
| views: | |
| tools: | |
| 1: | |
| text: 🇫🇷 lessteps | |
| view: lessteps | |
| 2: | |
| text: 🎃 blade | |
| view: blade | |
| 3: |
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
| #!/bin/sh | |
| # | |
| # JBoss standalone control script | |
| # | |
| # chkconfig: - 80 20 | |
| # description: JBoss AS Standalone | |
| # processname: standalone | |
| # pidfile: /var/run/jboss-as/jboss-as-standalone.pid | |
| # config: /etc/jboss-as/jboss-as.conf |
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
| $stateProvider | |
| .state('chef', { | |
| url: '/', | |
| template: require('templates/login/index.html'), | |
| controller: LoginController | |
| }) | |
| .state('logout', { | |
| url: '/logout', | |
| template: require('templates/login/index.html'), | |
| controller: LogoutController |
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
| <Context path="" crossContext="true"> | |
| <Resource | |
| name="jdbc/LiferayPool" | |
| auth="Container" | |
| type="javax.sql.DataSource" | |
| driverClassName="com.mysql.jdbc.Driver" | |
| url="jdbc:mysql://localhost/lportal?useUnicode=true&characterEncoding=UTF-8" | |
| username="root" | |
| password="" |