Skip to content

Commit dc1b8f3

Browse files
Add gitpod config
this commit adds support for Gitpod.io, a free automated dev environment that makes contributing and generally working on GitHub projects much easier. It allows anyone to start a ready-to-code dev environment for any branch, issue and pull request with a single click.
1 parent c216545 commit dc1b8f3

File tree

3 files changed

+50
-0
lines changed

3 files changed

+50
-0
lines changed

.gitpod.Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM gitpod/workspace-full-vnc
2+
3+
USER gitpod
4+
5+
# Install custom tools, runtime, etc. using apt-get
6+
# For example, the command below would install "bastet" - a command line tetris clone:
7+
#
8+
# RUN sudo apt-get -q update && # sudo apt-get install -yq bastet && # sudo rm -rf /var/lib/apt/lists/*
9+
#
10+
# More information: https://www.gitpod.io/docs/config-docker/

.gitpod.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
image:
2+
file: .gitpod.Dockerfile
3+
github:
4+
prebuilds:
5+
# enable for the master/default branch (defaults to true)
6+
master: true
7+
# enable for all branches in this repo (defaults to false)
8+
branches: true
9+
# enable for pull requests coming from this repo (defaults to true)
10+
pullRequests: true
11+
# enable for pull requests coming from forks (defaults to false)
12+
pullRequestsFromForks: true
13+
# add a check to pull requests (defaults to true)
14+
addCheck: true
15+
# add a "Review in Gitpod" button as a comment to pull requests (defaults to false)
16+
addComment: true
17+
# add a "Review in Gitpod" button to the pull request's description (defaults to false)
18+
addBadge: true
19+
# add a label once the prebuild is ready to pull requests (defaults to false)
20+
addLabel: true
21+
tasks:
22+
- command: /opt/android-studio/bin/studio.sh
23+
- command: echo "Hello"
24+
ports:
25+
- port: 5900
26+
onOpen: ignore
27+
- port: 6080
28+
onOpen: ignore
29+
- port: 35900
30+
onOpen: ignore
31+
- port: 6942
32+
onOpen: ignore
33+
vscode:
34+
extensions:
35+
- [email protected]:z3IVaDRzKS8IeFWrhyaPAA==
36+
- [email protected]:TY2OLKxxIJSs2lt3TgOpjw==
37+
- [email protected]:sXCoQONS3kXpSTBuMnxkyQ==
38+
- [email protected]:kX3nrW3fv/LjU/QSQ41zYA==

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![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)
2+
13
# A_Guide_to_Running_Tensorflow_Models_on_Android
24
This is the code for"A Guide to Running Tensorflow Models on Android" By SIraj Raval on Youtube
35

0 commit comments

Comments
 (0)