SSE | Sygnal Site Engine
Community ForumSupport Us!Micro-Consulting
  • Sygnal Site Engine ( SSE )
  • The SSE Architecture
  • What's New
  • Feature Roadmap
    • Component Architecture
    • File Copy & Augmented Builds
    • SA5 Integration
  • Installation & Setup
    • Setup Github Repository
    • Setup Netlify
      • jsDelivr
    • Setup Webflow
    • Advanced Install Notes
      • Creating a Persistent Test Env
      • Add SSE to an Existing Repo
  • Usage Notes
    • Developing with SSE
    • Building & Deploying Code
    • Code Structure
    • Page Router
    • Components
      • Components Future Notes
    • Source Structure & Key Files
      • Utilities
      • Route Dispatcher
      • Infrastructure
      • Usage Notes
    • SCSS
    • Useful Library Additions
      • Adding Libraries
      • Luxon
      • Cookies
      • Core Libraries
      • Extending Capabilities
    • Best Practices
    • Unit Testing
      • Using Google Sheets as a Unit Test Data Source
      • Datetime & Timezone Tests
      • Best Practices
      • Page 1
  • Sygnal Devproxy
    • What is Devproxy?
    • Devproxy Setup
    • Cloudflare Setup
    • Webflow Site Configuration
    • Configurations
      • Controlling deployment flow
    • Future
  • Tech Stack
    • Source Code Repository
    • Visual Studio Code
    • Developer IDE
    • Dev Hosting
    • Code CDN
    • Devproxy
  • Further Development
    • Dev Team Notes
      • Engine Mode
    • Reference Project
    • Future
      • Component Development
      • Reactive State Management
      • Expand Script Loading
    • Devmode
    • CI/CD Discussions
      • Page 2
    • SA5
  • Tools
    • Webflow Designer Notation
  • SPECIAL ENHANCEMENTS
    • cookie.js
    • PostHog
Powered by GitBook
On this page
  • Video Tutorial
  • Setup Test CDN ( optional )
  • Update your Webflow Script
  1. Installation & Setup
  2. Advanced Install Notes

Creating a Persistent Test Env

PreviousAdvanced Install NotesNextAdd SSE to an Existing Repo

Last updated 10 months ago

If you are working with Sygnal and using Sygnal's DevProxy, we can also setup a Persistent TEST Environment.

Video Tutorial

Setup Test CDN ( optional )

Create a second new site in Netlify

Connect to the same repo, with these settings;

Setting
Value
Notes

Site name

e.g. mysite-test

Our convention is to use the same site name as before, affixed with -test

Branch to deploy

dev

<- note difference

Base directory

( blank )

Build command

npm run build

Publish directory

dist

Functions directory

( blank )

Deploy

Test it

Update your Webflow Script

In site-wide before-head, add your script references;

Make certain to adjust the prod and test URLs accordingly.

<!-- Site Engine (SSE)
     https://engine.sygnal.com
--> 
<script 
  src="https://mysite.netlify.app/index.js"
  test-src="https://mysite-test.netlify.app/index.js"
  dev-src="http://127.0.0.1:3000/dist/index.js"
  ></script> 

e.g.

https://mysite-test.netlify.app/index.js