aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/tutorial/environment.md
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2017-08-09 00:23:38 +0200
committerGravatar Marcel Hlopko <hlopko@google.com>2017-08-09 11:35:08 +0200
commit3d70c318b46414d735613e5afcedd100d922028a (patch)
tree07cb3453cc59020fd81adb233a13d3107fcfd5cc /site/docs/tutorial/environment.md
parent1e05dd06e31328f78b015c374275f8e6bb258b6d (diff)
Split the mobile app tutorial into separate Android and iOS tutorials and eliminate the backend server tutorial.
RELNOTES: None. PiperOrigin-RevId: 164653190
Diffstat (limited to 'site/docs/tutorial/environment.md')
-rw-r--r--site/docs/tutorial/environment.md70
1 files changed, 0 insertions, 70 deletions
diff --git a/site/docs/tutorial/environment.md b/site/docs/tutorial/environment.md
deleted file mode 100644
index c9f9043499..0000000000
--- a/site/docs/tutorial/environment.md
+++ /dev/null
@@ -1,70 +0,0 @@
----
-layout: documentation
-title: Tutorial - Set Up Your Environment
----
-
-# Tutorial - Set Up Your Environment
-
-The first step in this tutorial is to set up your environment.
-
-Here, you'll do the following:
-
-* Install Bazel
-* Install Android Studio
-* Install Xcode (macOS only)
-* Get the sample project from the GitHub repo
-
-## Install Bazel
-
-Follow the [installation instructions](../install.md) to install Bazel and
-its dependencies.
-
-## Install Android Studio
-
-Download and install Android Studio as described in [Install Android Studio](https://developer.android.com/sdk/index.html).
-
-The installer does not automatically set the `ANDROID_HOME` variable.
-Set it to the location of the Android SDK, which defaults to `$HOME/Android/Sdk/`
-.
-
-For example:
-
-`export ANDROID_HOME=$HOME/Android/Sdk/`
-
-For convenience, add the above statement to your `~/.bashrc` file.
-
-## Install Xcode (macOS only)
-
-If you are following the steps in this tutorial on macOS, download and
-install [Xcode](https://developer.apple.com/xcode/downloads/). The Xcode
-download contains the iOS libraries, the Objective-C compiler, and other tools
-required by Bazel to build iOS apps.
-
-## Get the sample project
-
-You also need to get the sample project for the tutorial from GitHub:
-
-[https://github.com/bazelbuild/examples/](https://github.com/bazelbuild/examples/)
-
-The GitHub repo has two branches: `source-only` and `master`. The `source-only`
-branch contains the source files for the project only. You'll use the files in
-this branch in this tutorial. The `master` branch contains both the source files
-and completed Bazel `WORKSPACE` and `BUILD` files. You can use the files in this
-branch to check your work when you've completed the tutorial steps.
-
-Enter the following at the command line to get the files in the `source-only`
-branch:
-
-```bash
-cd $HOME
-git clone -b source-only https://github.com/bazelbuild/examples
-```
-
-The `git clone` command creates a directory named `$HOME/examples/`. This
-directory contains several sample projects for Bazel. The project files for this
-tutorial are in `$HOME/examples/tutorial`.
-
-## What's next
-
-Now that you have set up your environment, you can
-[set up a Bazel workspace](workspace.md).