Compare commits

..

5 Commits

Author SHA1 Message Date
Thomas Hobson 507233400d
Merge pull request #399 from engineer-man/dependabot/pip/docs/mkdocs-1.2.3
build(deps): bump mkdocs from 1.1.2 to 1.2.3 in /docs
2021-11-26 04:26:04 +13:00
dependabot[bot] 0085bd7217
build(deps): bump mkdocs from 1.1.2 to 1.2.3 in /docs
Bumps [mkdocs](https://github.com/mkdocs/mkdocs) from 1.1.2 to 1.2.3.
- [Release notes](https://github.com/mkdocs/mkdocs/releases)
- [Commits](https://github.com/mkdocs/mkdocs/compare/1.1.2...1.2.3)

---
updated-dependencies:
- dependency-name: mkdocs
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-11-25 14:56:13 +00:00
Thomas Hobson de4d12caa7
Merge pull request #398 from Hydrazer/master
pkg(befunge93-0.2.0): added befunge93
2021-11-26 03:55:44 +13:00
Hydrazer 0949610b61 pkg(befunge93-0.2.0): added befunge93 2021-11-25 07:42:00 -07:00
Thomas Hobson 142e7912fa
api(config): respect $PORT as used by heroku if no explicit bind address provided 2021-11-26 02:32:28 +13:00
9 changed files with 34 additions and 3 deletions

View File

@ -68,7 +68,7 @@ const options = [
{ {
key: 'bind_address', key: 'bind_address',
desc: 'Address to bind REST API on', desc: 'Address to bind REST API on',
default: '0.0.0.0:2000', default: `0.0.0.0:${process.env["PORT"] || 2000}`,
validators: [], validators: [],
}, },
{ {

View File

@ -1 +1 @@
mkdocs==1.1.2 mkdocs==1.2.3

2
package-lock.json generated
View File

@ -29,4 +29,4 @@
"dev": true "dev": true
} }
} }
} }

15
packages/befunge93/0.2.0/build.sh vendored Normal file
View 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
View 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

View File

@ -0,0 +1,5 @@
{
"language": "befunge93",
"version": "0.2.0",
"aliases": ["b93"]
}

4
packages/befunge93/0.2.0/run vendored Normal file
View 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
View File

@ -0,0 +1 @@
64+"KO">:#,_@

View File

@ -323,6 +323,7 @@ Content-Type: application/json
`awk`, `awk`,
`bash`, `bash`,
`befunge93`,
`brainfuck`, `brainfuck`,
`c`, `c`,
`c++`, `c++`,