Skip to content
This repository has been archived by the owner on Oct 9, 2022. It is now read-only.

Commit

Permalink
misc improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Dec 19, 2018
1 parent b368a20 commit 05454bf
Showing 1 changed file with 27 additions and 4 deletions.
31 changes: 27 additions & 4 deletions gettingstarted.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,33 @@
Getting Started
===============

Before you start
What you'll need
----------------

Some familiarity with `Kotlin <https://kotlinlang.org/>`_ is assumed, as is familiarity with `Gradle <https://kotlinlang.org/>`_,
which handles dependency management. We highly recommend using `IntelliJ IDEA <https://www.jetbrains.com/idea/>`_,
it practically writes the code for you.
Some familiarity with `Kotlin <https://kotlinlang.org/>`_ is assumed, as is familiarity with
`Gradle <https://kotlinlang.org/>`_.

Adding Kweb to your project
---------------------------

Kweb is distributed via JitPack, so add this to the repositories {block} in your build.gradle:

.. code-block:: gradle
repositories {
maven { url 'https://jitpack.io' }
}
Then add Kweb to the dependencies block:

.. code-block:: gradle
dependencies {
compile 'com.github.kwebio:core:LATEST_VERSION'
}
You can find the LATEST_VERSION of Kweb on `JitPack <https://jitpack.io/#kwebio/core>`_.

Hello world
-----------

0 comments on commit 05454bf

Please sign in to comment.