Drop old.

This commit is contained in:
Brad Nelson
2021-01-08 23:48:46 -08:00
parent cca542ac83
commit c5ef901574
4 changed files with 25 additions and 13 deletions

View File

@ -203,9 +203,7 @@ $(DEPLOY)/app.yaml: $(ARDUINO)/ueforth-arduino-esp32.zip \
mkdir -p $(DEPLOY)/static
cp -r $(ARDUINO)/ueforth-arduino-esp32.zip $(DEPLOY)/static
cp -r $(POSIX)/ueforth $(DEPLOY)/static/ueforth.linux
cp -r $(WINDOWS)/uEforth.exe $(DEPLOY)/static/ueforth.windows
cp -r $(WINDOWS)/uEforth.exe $(DEPLOY)/static/uEforth.exe
cp -r $(RES)/eforth.ico $(DEPLOY)/static/favicon.ico
cp -r site/* $(DEPLOY)
deploy:
cd $(DEPLOY) && ./deploy.sh
cp -r site/.gcloudignore $(DEPLOY)

View File

@ -136,10 +136,6 @@
tos = (cell_t) ((WebServer *) tos)->method()) \
X("WebServer.handleClient", WEBSERVER_HANDLE_CLIENT, \
((WebServer *) tos)->handleClient(); DROP) \
X("OUTPUT", OUTPUT, DUP; tos = OUTPUT) \
X("INPUT", INPUT, DUP; tos = INPUT) \
X("LOW", LOW, DUP; tos = LOW) \
X("HIGH", HIGH, DUP; tos = HIGH) \
// TODO: Why doesn't ftruncate exist?
// X("RESIZE-FILE", RESIZE_FILE, cell_t fd = tos; DROP; \

View File

@ -0,0 +1,23 @@
# This file specifies files that are *not* uploaded to Google Cloud Platform
# using gcloud. It follows the same syntax as .gitignore, with the addition of
# "#!include" directives (which insert the entries of the given .gitignore-style
# file at that point).
#
# For more information, run:
# $ gcloud topic gcloudignore
#
.gcloudignore
# If you would like to upload your .git directory, .gitignore file or files
# from your .gitignore file, remove the corresponding line
# below:
.git
.gitignore
# Binaries for programs and plugins
*.dll
*.so
*.dylib
# Test binary, build with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out

View File

@ -18,11 +18,6 @@ handlers:
upload: index.html
secure: always
- url: /static/uEforth.exe
static_files: static/ueforth.windows
upload: static/ueforth.windows
secure: always
- url: /static
static_dir: static
secure: always