Skip to content

Commit 7136332

Browse files
authored
Configure Gitpod (#11)
1 parent 862ee5c commit 7136332

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

.gitpod.dockerfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM gitpod/workspace-base:2023-11-04-12-07-48
2+
3+
USER root
4+
5+
RUN apt-get update \
6+
&& apt-get install -y --no-install-recommends luarocks=3.8.0+dfsg1-1 \
7+
&& apt-get clean \
8+
&& rm -rf /var/lib/apt/lists/*
9+
10+
RUN luarocks install busted \
11+
&& luarocks install luacheck
12+
13+
USER gitpod

.gitpod.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
image:
3+
file: .gitpod.dockerfile
4+
...

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Algorithms and Data Structures in Lua
22

3+
[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/TheAlgorithms/Lua)
4+
35
A repository for Algorithms and Data Structures implemented in the Lua programming language.
46

57
Targets Lua 5.1 / LuaJIT.

0 commit comments

Comments
 (0)