You must be
rootto follow the steps in this guide.
- Download and Install MariaDB. MariaDB is used in place of MySQL.
sudo apt-get install mariadb-server mariadb-client
- Set it up to run on boot.
| # Convert it into pkcs12 format | |
| openssl pkcs12 -export -out jenkins.p12 -inkey certificate.key -in certificate.crt -name "jenkins-cert" | |
| # Create keystore if not exist | |
| https://www.sslshopper.com/article-most-common-java-keytool-keystore-commands.html | |
| # Import | |
| keytool -importkeystore -srckeystore jenkins.p12 -srcstoretype pkcs12 -destkeystore keystore.jks |
| import React, { Component } from 'react'; | |
| import PubSub from 'pubsub-js'; | |
| class App extends Component { | |
| state = { show: true }; | |
| render() { | |
| return ( | |
| <div className="App"> | |
| <button onClick={() => this.setState(state => ({ show: !state.show }))}> | |
| {this.state.show ? 'Hide panel' : 'Show panel'} |
$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/