mirror of
https://github.com/engineer-man/piston.git
synced 2025-08-07 13:28:48 +02:00
Compare commits
5 commits
3a2dc74586
...
507233400d
Author | SHA1 | Date | |
---|---|---|---|
|
507233400d | ||
|
0085bd7217 | ||
|
de4d12caa7 | ||
|
0949610b61 | ||
|
142e7912fa |
9 changed files with 34 additions and 3 deletions
|
@ -68,7 +68,7 @@ const options = [
|
|||
{
|
||||
key: 'bind_address',
|
||||
desc: 'Address to bind REST API on',
|
||||
default: '0.0.0.0:2000',
|
||||
default: `0.0.0.0:${process.env["PORT"] || 2000}`,
|
||||
validators: [],
|
||||
},
|
||||
{
|
||||
|
|
|
@ -1 +1 @@
|
|||
mkdocs==1.1.2
|
||||
mkdocs==1.2.3
|
15
packages/befunge93/0.2.0/build.sh
vendored
Normal file
15
packages/befunge93/0.2.0/build.sh
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# source python 2.7
|
||||
source ../../python/2.7.18/build.sh
|
||||
|
||||
# clone befunge repo
|
||||
git clone -q 'https://github.com/programble/befungee' befunge93
|
||||
|
||||
# go inside befunge93 so we can checkout
|
||||
cd befunge93
|
||||
|
||||
# checkout the version 0.2.0
|
||||
git checkout tag/v0.2.0
|
||||
|
||||
cd ..
|
5
packages/befunge93/0.2.0/environment
vendored
Normal file
5
packages/befunge93/0.2.0/environment
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Put 'export' statements here for environment variables
|
||||
export PATH=$PWD/bin:$PATH
|
||||
export BEFUNGE93_PATH=$PWD/befunge93
|
5
packages/befunge93/0.2.0/metadata.json
vendored
Normal file
5
packages/befunge93/0.2.0/metadata.json
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"language": "befunge93",
|
||||
"version": "0.2.0",
|
||||
"aliases": ["b93"]
|
||||
}
|
4
packages/befunge93/0.2.0/run
vendored
Normal file
4
packages/befunge93/0.2.0/run
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# run the befunge program with the file name
|
||||
python2.7 "$BEFUNGE93_PATH"/befungee.py "$1"
|
1
packages/befunge93/0.2.0/test.b93
vendored
Normal file
1
packages/befunge93/0.2.0/test.b93
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
64+"KO">:#,_@
|
|
@ -323,6 +323,7 @@ Content-Type: application/json
|
|||
|
||||
`awk`,
|
||||
`bash`,
|
||||
`befunge93`,
|
||||
`brainfuck`,
|
||||
`c`,
|
||||
`c++`,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue