Boilerplate project already includes:
- TypeScript
- Webpack
- ReactJS
-
Run
npm install
oryarn
to install dependencies -
Run
npm start
oryarn start
to start developing, you should have a URL that looks like this -
(Optional) change the
subdomain
insidewebpack.config.js
(default is app name + your computerusername
)
const pkg = require('./package.json')
const subdomain = `${require('os').userInfo().username}-${pkg.name}`.replace(/(\s|\.)+/g, '-').toLowerCase()
First time you open the URL you will see a page from localtunnel asking you to click continue. This check will happen every 7 days per domain. Feel free to remove localtunnel if you want. But you have to serve your app over https, that's a requirement.
https://<subdomain>.loca.lt
- Paste the URL in
web-plugin url
in your app settings - open a board & you should see your app in the main toolbar when you click the three dots.
Run npm run build
or yarn run build