Drop old.
This commit is contained in:
@ -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)
|
||||
|
||||
@ -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; \
|
||||
|
||||
23
ueforth/site/.gcloudignore
Normal file
23
ueforth/site/.gcloudignore
Normal 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
|
||||
@ -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
|
||||
|
||||
Reference in New Issue
Block a user