Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 2007713

Browse files
committed
Add a basic CONTRIBUTING.md
1 parent 01ff5c3 commit 2007713

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

CONTRIBUTING.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
Contributing to Sky Engine
2+
==========================
3+
4+
Getting the code
5+
----------------
6+
7+
To get the code:
8+
9+
# Fork https://github.com/domokit/sky_engine into your own GitHub account.
10+
# [Download depot_tools](http://www.chromium.org/developers/how-tos/install-depot-tools)
11+
and make sure it is in your path.
12+
# Create a `.gclient` file in an empty directory with the following contents:
13+
14+
```
15+
solutions = [
16+
{
17+
"managed": False,
18+
"name": "src",
19+
"url": "[email protected]:<your_name_here>/sky_engine.git",
20+
"custom_deps": {},
21+
"deps_file": "DEPS",
22+
"safesync_url": "",
23+
},
24+
]
25+
target_os = ["android"]
26+
```
27+
28+
# `gclient sync`
29+
# `cd src`
30+
# `git remote add upstream [email protected]:domokit/sky_engine.git`
31+
# `./build/install-build-deps.sh`
32+
33+
Building the code
34+
-----------------
35+
36+
# `./mojo/tools/mojob gn`
37+
# `ninja -C out/Debug`
38+
39+
Contributing code
40+
-----------------
41+
42+
The Sky engine repository gladly accepts contributions via GitHub pull requests.

0 commit comments

Comments
 (0)