Home >Web Front-end >JS Tutorial >NgSysV.Automated Svelte Pre-render Builds
This post series is indexed at NgateSystems.com. You'll find a super-useful keyword search facility there too.
Last reviewed: Nov '24
Post 4.2 floated the concept of pre-rendering a web page. The idea was that if a page never changes (or, at least, doesn't change too often) then it might as well be turned into HTMl during the project's "build".
This is fine but, if the underlying data changes too often, running builds to bring pre-rendered pages up to date manually will become annoying. Automation is surely the answer.
You might tackle this in several ways, but I recommend using a script to run the build/deploy sequence and then getting the Windows scheduler to run this automatically
Here's a ps1 script you might use:
$projectId = [myProjectId] $projectPath = [myProjectPath] # Define log file path $logPath = "$projectPath\log.txt" # Overwrite the log file with a timestamp at the beginning $timestamp = Get-Date -Format "yyyy-MM-dd HH:mm:ss" "Log started at $timestamp" | Out-File -FilePath $logPath -Force # Set the project ID gcloud config set project $projectId # Redirect output to log file try { cd $projectPath 2>&1 | Out-File -FilePath $logPath -Append npm run build | Out-File -FilePath $logPath -Append # Fetch all versions ordered by creation date, excluding the latest 10 $oldVersions = gcloud app versions list ` --sort-by="~version.createTime" ` --format="value(version.id)" | Select-Object -Skip 10 # Delete the old versions if there are any if ($oldVersions.Count -gt 0) { "Deleting old versions..."| Out-File -FilePath $logPath -Force $oldVersions | ForEach-Object { gcloud app versions delete $_ --quiet 2>&1 | Out-File -FilePath $logPath -Append } } else { "No old versions to delete. The limit of $MaxVersions is not exceeded." | Out-File -FilePath $logPath -Force } gcloud app deploy build/app.yaml --quiet 2>&1 | Out-File -FilePath $logPath -Append } catch { "An error occurred: $_" | Out-File -FilePath $logPath -Append }
In this script, [myProjectId} is your Google projectId - eg "svelte-dev-80286"
and [myProjectPath] is the full pathname for your VSCode project - eg "C:UsersmjoycDesktopGitProjectssvelte-dev". The output log.txt file ends up in the root of your VSCode project folder
The script looks more complicated than you might have expected. Here are the reasons for this:
Because you intend to schedule the script automatically, you need to maintain a log file to tell you what has gone wrong if it errors. This alone adds much unavoidable"clutter". But there's also a strange "version deletion" section. You need this because, each time you run a "build", Google will create a new version in cloud storage. There is a default maximum to the number of versions you can create. I added this section when my system errored when the version count reached 200.
In the script above, I limit the number of versions maintained to just 10 (I'm paying for my App run hosting now!).
The most direct way of testing the script file in a VSCode terminal session is to select its contents, paste it into the session and press return. But for production purposes, you need some automation.
Here's a procedure for registering a Windows Scheduler task to run the build script.
I use a Windows Scheduler task created using the above procedure to run a nightly build for the pre-rendered "ngatesystems.com" keyword-search page. Though new posts are now added only rarely, I'm still making regular edits to existing pages. The nightly run arrangement means the search page is never more than a day behind the live data.
The above is the detailed content of NgSysV.Automated Svelte Pre-render Builds. For more information, please follow other related articles on the PHP Chinese website!