simple-dapp/README.md

39 lines
531 B
Markdown
Raw Normal View History

2018-03-20 08:38:33 +00:00
# status-dapp
2018-03-20 08:46:41 +00:00
Simple Dapp
### Installation:
```
npm install
npm run build
```
## Development Mode
### Run application:
```
lein figwheel-repl
```
Figwheel will automatically push cljs changes to the browser.
Wait a bit, then browse to [http://localhost:3449](http://localhost:3449).
## Production Mode
### Build CLJS:
```
lein build-prod
```
2019-05-06 09:01:18 +00:00
Open `resources/public/index.html` in the browser.
### Deploy
```
lein build-prod
cp resources/public/js/compiled/app.js ../status-im.github.io/src/dapp/js/compiled/app.js
```