Skip to content

Commit

Permalink
gitpod support for bitclout (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
tijno committed Nov 9, 2021
1 parent 99235fa commit 8d13f63
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Commands to start on workspace startup
tasks:
- name: open terminial
- name: install & run dev server
openMode: split-right
init: npm install
command: npm start

# Pre-install some extensions
vscode:
extensions:
- angular.ng-template
- ecmel.vscode-html-css
- eamodio.gitlens

# Ports to expose on workspace startup
ports:
- port: 4200
onOpen: open-browser

# Github integration
github:
prebuilds:
master: true
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,21 @@ docs should give you everything you need to get started:
* [DeSo Code Walkthrough](https://docs.deso.org/code/walkthrough)
* [Setting Up Your Dev Environment](https://docs.deso.org/code/dev-setup)
* [Making Your First Changes](https://docs.deso.org/code/making-your-first-changes)

# Start Coding
The quickest way to contribute changes to the BitClout Frontend is the following these steps:

1. Open frontend repo in Gitpod

[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/deso-protocol/frontend)

You can use any repo / branch URL and just prepend `https://gitpod.io/#` to it.

2. If needed, login to your github account

3. Set the correct `lastLocalNodeV2` to `"https://api.tijn.club"` in your browser Local Storage for the gitpod preview URL

4. Create a new branch to start working

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).

0 comments on commit 8d13f63

Please sign in to comment.