Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

Fully-automate development setup with Gitpod

This commit implements a fully-automated development setup using Gitpod.io, an
online IDE for GitLab, GitHub, and Bitbucket that enables Dev-Environments-As-Code.
This makes it easy for anyone to get a ready-to-code workspace for any branch,
issue or pull request almost instantly with a single click.

+30
+7
.gitpod.Dockerfile
··· 1 + FROM gitpod/workspace-full 2 + 3 + # Install custom tools, runtimes, etc. 4 + # For example "bastet", a command-line tetris clone: 5 + # RUN brew install bastet 6 + # 7 + # More information: https://www.gitpod.io/docs/config-docker/
+16
.gitpod.yml
··· 1 + image: 2 + file: .gitpod.Dockerfile 3 + 4 + # See: https://www.gitpod.io/docs/config-start-tasks/ 5 + tasks: 6 + - init: cargo build && make 7 + command: cargo watch -x run 8 + 9 + # See: https://www.gitpod.io/docs/prebuilds/#configure-the-github-app 10 + github: 11 + prebuilds: 12 + master: true 13 + branches: true 14 + pullRequests: true 15 + pullRequestsFromForks: true 16 + addCheck: true
+6
CONTRIBUTING.md
··· 38 38 4. Once the changes have been approved the code will be rebased into the 39 39 `main` branch. 40 40 41 + ## Hacking on Gleam in Gitpod 42 + 43 + If you have a web browser, you can get a fully pre-configured Gleam development environment in one click: 44 + 45 + [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/gleam-lang/gleam) 46 + 41 47 ## Local development 42 48 43 49 To run the compiler tests.
+1
README.md
··· 10 10 <a href="https://github.com/gleam-lang/gleam/releases"><img src="https://img.shields.io/github/release/gleam-lang/gleam" alt="GitHub release"></a> 11 11 <a href="https://discord.gg/Fm8Pwmy"><img src="https://img.shields.io/discord/768594524158427167?color=blue" alt="Discord chat"></a> 12 12 <a><img src="https://github.com/gleam-lang/gleam/workflows/ci/badge.svg?branch=main"></a> 13 + <a href="https://gitpod.io/#https://github.com/gleam-lang/gleam"><img src="https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod"></a> 13 14 </p> 14 15 15 16