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
| module.exports = { | |
| entry: { | |
| app: './src/app.js' | |
| }, | |
| output: { | |
| path: __dirname + '/dist', | |
| publicPath: "/assets/", | |
| filename: '[name].bundle.js' | |
| }, | |
| devServer: { |
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
| var React = require('react'); | |
| var ReactDOM = require('react-dom'); | |
| var RandomMessage = React.createClass({ | |
| getInitialState: function () { | |
| return { message: "Hello, React!" }; | |
| }, | |
| onClick: function () { | |
| var messages = ['Hello, DalkStudy', 'Hello, Jonnung', 'Hello, Gaerae']; | |
| var randomMessage = messages[Math.floor(Math.random() * 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
| Homebrew build logs for python on macOS 10.12.5 | |
| Build date: 2018-04-09 11:15:24 |
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
| # Metallb ์ค์น ํ Loadbalancer ํ์ ์ Service ์ ๊ทผ์ด ๊ฐ๋ฅํ ์ง ํ ์คํธํ๊ธฐ ์ํ ์ํ POD์ Service | |
| kind: Pod | |
| apiVersion: v1 | |
| metadata: | |
| name: bar-app | |
| labels: | |
| app: http-echo | |
| spec: | |
| containers: | |
| - name: bar-app |
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
| From mongo:4.4 | |
| WORKDIR . | |
| COPY initiateReplSet.js ./docker-entrypoint-initdb.d/ | |
| CMD ["-replSet", "rs0"] |
OlderNewer