Skip to content

Commit 8d13f63

Browse files
authored
gitpod support for bitclout (#506)
1 parent 99235fa commit 8d13f63

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

.gitpod.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Commands to start on workspace startup
2+
tasks:
3+
- name: open terminial
4+
- name: install & run dev server
5+
openMode: split-right
6+
init: npm install
7+
command: npm start
8+
9+
# Pre-install some extensions
10+
vscode:
11+
extensions:
12+
- angular.ng-template
13+
- ecmel.vscode-html-css
14+
- eamodio.gitlens
15+
16+
# Ports to expose on workspace startup
17+
ports:
18+
- port: 4200
19+
onOpen: open-browser
20+
21+
# Github integration
22+
github:
23+
prebuilds:
24+
master: true

README.md

+18
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,21 @@ docs should give you everything you need to get started:
1414
* [DeSo Code Walkthrough](https://docs.deso.org/code/walkthrough)
1515
* [Setting Up Your Dev Environment](https://docs.deso.org/code/dev-setup)
1616
* [Making Your First Changes](https://docs.deso.org/code/making-your-first-changes)
17+
18+
# Start Coding
19+
The quickest way to contribute changes to the BitClout Frontend is the following these steps:
20+
21+
1. Open frontend repo in Gitpod
22+
23+
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/deso-protocol/frontend)
24+
25+
You can use any repo / branch URL and just prepend `https://gitpod.io/#` to it.
26+
27+
2. If needed, login to your github account
28+
29+
3. Set the correct `lastLocalNodeV2` to `"https://api.tijn.club"` in your browser Local Storage for the gitpod preview URL
30+
31+
4. Create a new branch to start working
32+
33+
To commit / submit a pull reqest from gitpod, you will need to give gitpod additional permissions to your github account: `public_repo, read:org, read:user, repo, user:email, workflow` which you can do on the [GitPod Integrations page](https://gitpod.io/integrations).
34+

0 commit comments

Comments
 (0)