diff --git a/Releasing-to-any-webserver.md b/Releasing-to-any-webserver.md index fe4f02a..2142eaf 100644 --- a/Releasing-to-any-webserver.md +++ b/Releasing-to-any-webserver.md @@ -1 +1,26 @@ -first \ No newline at end of file +### Building the DApp + +To build your app: + +```shell +embark build + +``` + +This will build your app and make it available at ```dist/dapp```. You can easily upload or copy paste this folder to your webserver or app of choice. + +### Releasing a DApp that uses the Tesnet + +Once you have the testnet chain configured in one of your environments (usually ```staging``` in ```config/blockchain```, you can then easily deploy using: + +```shell +embark blockchain staging +``` + +in one console, followed by + +```shell +embark build staging +``` + +in another console. The final app will be available at the 'dist/dapp' folder \ No newline at end of file