This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM theiaide/theia:next | |
RUN addgroup theia && \ | |
adduser -G theia -s /bin/sh -D theia; | |
RUN apk update && \ | |
apk upgrade && \ | |
apk add \ | |
python \ | |
python3 \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"user": { | |
"profile": { | |
"name": "Sayonika Model User", | |
"id": "66646631-2341-4132-9200-1e51ed007366", | |
"bio": "Sed sed magna a felis tempus ultricies. Sed rhoncus mi in varius dignissim. Donec sodales justo nec dolor vehicula, sit amet venenatis ex rutrum. Suspendisse venenatis, augue id tincidunt pulvinar, urna mi iaculis magna, eget bibendum quam lectus vel ex.", | |
"donator": false, | |
"developer": false, | |
"moderator": false | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
apt-get update && \ | |
apt-get -y upgrade && \ | |
apt-get -y install sudo && \ | |
apt-get -y install \ | |
python \ | |
python3 \ | |
python3-pip \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
version: 1, | |
machine: "pc", | |
memory_size: 256, | |
kernel: "https://bellard.org/jslinux/kernel-x86.bin", | |
cmdline: "loglevel=3 console=hvc0 root=root rootfstype=9p rootflags=trans=virtio ro TZ=${TZ}", | |
fs0: { file: "https://vm.maidcafe.me/images/linux3.iso" }, | |
eth0: { driver: "user" }, | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
install: | |
... | |
# now this is where it gets interesting | |
# we're copying over the template files into the renpy SDK | |
# and CD into the renpy | |
# Replace quickstart-oss with your GitHub repository name! | |
- bash ./quickstart-oss/travis/setup.sh | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This Script is Copyright (c) Peter Lorenzen | |
# You can find the original source at: http://peter.lorenzen.us/linux/headless-raspberry-pi-configuration | |
# Make sure you run this before executing the script: | |
# | |
# chmod -R 755 ./rpido | |
# | |
URL=$(curl -s https://downloads.raspberrypi.org/raspbian_lite_latest | awk -F\" '/http/ { print $2}') | |
LATEST=$(basename $URL .zip) | |
zipfile=DIST/$LATEST.zip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/system/bin/sh | |
# | |
# This will attempt to mount /proc, /sys, and /dev. | |
# | |
# Make sure your directory has sufficient permissions. | |
set -o errexit -o nounset | |
if [ ! -d "$1" ] || [ ! -n "$1" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
ide: | |
image: chinodesuuu/coder:latest | |
volumes: | |
- /home/coder/projects | |
ports: | |
- '9000:9000' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Special exec script to handle user cases that needs auth or | |
# stuff I can think of. | |
# check for $CODER_ENABLE_AUTH. | |
if [ -z "$CODER_ENABLE_AUTH" ]; then | |
if [ -z "$CODER_ENABLE_TLS" ]; then | |
exec "$(command -v code-server) --port=9000 --allow-http /home/coder/projects"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=VSCode in a browser | |
After=network.target | |
[Service] | |
Type=simple |