diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile new file mode 100644 index 0000000..768b253 --- /dev/null +++ b/.gitpod.Dockerfile @@ -0,0 +1,10 @@ +FROM gitpod/workspace-full-vnc + +USER gitpod + +# Install custom tools, runtime, etc. using apt-get +# For example, the command below would install "bastet" - a command line tetris clone: +# +# RUN sudo apt-get -q update && # sudo apt-get install -yq bastet && # sudo rm -rf /var/lib/apt/lists/* +# +# More information: https://www.gitpod.io/docs/config-docker/ diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..78071d8 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,38 @@ +image: + file: .gitpod.Dockerfile +github: + prebuilds: + # enable for the master/default branch (defaults to true) + master: true + # enable for all branches in this repo (defaults to false) + branches: true + # enable for pull requests coming from this repo (defaults to true) + pullRequests: true + # enable for pull requests coming from forks (defaults to false) + pullRequestsFromForks: true + # add a check to pull requests (defaults to true) + addCheck: true + # add a "Review in Gitpod" button as a comment to pull requests (defaults to false) + addComment: true + # add a "Review in Gitpod" button to the pull request's description (defaults to false) + addBadge: true + # add a label once the prebuild is ready to pull requests (defaults to false) + addLabel: true +tasks: + - command: /opt/android-studio/bin/studio.sh + - command: echo "Hello" +ports: + - port: 5900 + onOpen: ignore + - port: 6080 + onOpen: ignore + - port: 35900 + onOpen: ignore + - port: 6942 + onOpen: ignore +vscode: + extensions: + - adelphes.android-dev-ext@0.8.0:z3IVaDRzKS8IeFWrhyaPAA== + - mpotthoff.vscode-android-webview-debug@1.1.1:TY2OLKxxIJSs2lt3TgOpjw== + - DiemasMichiels.emulate@1.3.0:sXCoQONS3kXpSTBuMnxkyQ== + - fwcd.kotlin@0.2.10:kX3nrW3fv/LjU/QSQ41zYA== diff --git a/README.md b/README.md index 3eb6b6c..23f5114 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/llSourcell/A_Guide_to_Running_Tensorflow_Models_on_Android) + # A_Guide_to_Running_Tensorflow_Models_on_Android This is the code for"A Guide to Running Tensorflow Models on Android" By SIraj Raval on Youtube