1.) Download the Cloud SQL Auth Proxy
curl -o cloud-sql-proxy https://storage.googleapis.com/cloud-sql-connectors/cloud-sql-proxy/v2.13.0/cloud-sql-proxy.darwin.arm64
2.) Make the Cloud SQL Auth Proxy executable
chmod +x cloud-sql-proxy
3.) Build docker image from repo's root directory
docker build --no-cache .
4.)Tag docker image and push
#lists docker images
docker ps -a
docker tag [IMAGE_ID] us-central1-docker.pkg.dev/glide-atc-shared/atc-interval/interval-server:latest
docker push us-central1-docker.pkg.dev/glide-atc-shared/atc-interval/interval-server:latest
Interval Server is the central node used to run applications developed with the Interval SDK.
🚧 Note: Previously Interval Server was only available as a closed-source cloud service. Now, it is possible to run an instance yourself. This is a new direction for the Interval project and the fully open-source/self-hosted Interval Server application is still in early phases of development. If you encounter an issues setting up an Interval Server instance, please let us know by opening an issue!
Interval Server requires a Postgres database to work. In the future, especially for local development, we may ease this requirement.
We have tested Interval Server with Postgres versions 11.x and 12.x. Newer versions should work, but we do not plan to support anything older than 11.x.
Interval Server is a pure Node.js application. Node.js version 16 or higher is required to run Interval Server.
- Postmark is used for sending application emails. In the future we may introduce a vendor-agnostic path for sending emails. If a
POSTMARK_API_KEY
environment variable is not provided when running Interval server, emails will not be sent. - WorkOS is used for SSO, directory sync, and Sign in with Google. If
WORKOS_API_KEY
,WORKOS_CLIENT_ID
, andWORKOS_WEBHOOK_SECRET
environment variables are not provided when running Interval Server, these functions will not be available. - Slack can be used to send notifications via Interval's notify methods. If
SLACK_CLIENT_ID
andSLACK_CLIENT_SECRET
environment variables are not provided when running Interval Server, notifications cannot be sent via Slack. - S3 can be used to support file uploads via Interval's file input methods. If
S3_KEY_ID
,S3_KEY_SECRET
,S3_BUCKET
, andS3_REGION
environment variables are not provided when running Interval Server, file uploads will not function properly.
To support file uploads, you will need to configure your S3 bucket for Cross-origin Resource Sharing. Here's an example policy:
[
{
"AllowedHeaders": [
"*"
],
"AllowedMethods": [
"PUT",
"POST",
"DELETE"
],
"AllowedOrigins": [
"https://your-interval-server.com"
],
"ExposeHeaders": [
"x-amz-server-side-encryption",
"x-amz-request-id",
"x-amz-id-2"
],
"MaxAgeSeconds": 3000
}
]
APP_URL
is the URL where your Interval Server instance is running. For example:http://localhost:3000
orhttps://example.com
.DATABASE_URL
is the Postgres connection string. It should follow the formatpostgresql://username:password@host:port/dbname
.SECRET
is a secret that you must provide for use in encrypting passwords. Any string is valid for this value, but you should use something secure!WSS_API_SECRET
is a secret that you must provide. It is used internally by Interval Server for communication between Interval services. Any string is valid for this value, but you should use something secure!AUTH_COOKIE_SECRET
is a secret that you must provide for use in encrypting session cookies. Any string at least 32 characters in length is valid for this value, but you should use something secure!
Interval Server runs services on ports 3000
and 3033
. The main service runs on 3000
.
For development, you may wish to run an instance of Interval Server locally.
npm i -g @interval/server
- From the directory where you would like to run Interval Server, create a
.env
file like this:
DATABASE_URL=<YOUR DATABASE URL>
SECRET=<YOUR SECRET VALUE>
APP_URL=<YOUR APP URL>
AUTH_COOKIE_SECRET=<YOUR AUTH COOKIE SECRET>
WSS_API_SECRET=<YOUR WSS API SECRET>
Note: you don't need to use a .env
file. As long as the required variables are set, you should be good to go.
- If you have not already setup a database, run
interval-server db-init
to initialize one. - Run
interval-server start
to runinterval-server
. - 🎉 Visit http://localhost:3000 to access your Interval Server!
Running Interval Server in production is largely the same as running in development. For convenience, we've created a Docker image to make this even easier.
The Interval Server Docker image is: docker.io/alexarena/interval-server:latest
.
Many services like Render make it trivial to deploy Docker images with just a few clicks.
Important things to know:
- You'll still need to provide all required environment variables when running the Interval Server Docker image.
- Hosting providers like Render will automatically discover the Interval Server service running on port 3000 and will expose this port for you, but if your hosting provider doesn't do this, you'll have to handle exposing this yourself.
Once your Interval Server instance is up and running, it's trivial to connect to it from your Interval apps. Just add an endpoint
property pointing to your Interval Server instance to the Interval SDK's constructor. For example:
const interval = new Interval({
apiKey: process.env.INTERVAL_KEY,
endpoint: 'wss://<YOUR INTERVAL SERVER URL>/websocket', // Don't forget the /websocket path!
})
Note: if you're running Interval Server locally, this URL will use the insecure ws://
protocol, not the secure wss://
version used in production deployments.
Once you run npm i -g @interval/server
, the following commands are available:
Starts Interval Server. See above for information on running Interval Server locally or in production.
Creates and sets up an Postgres database for use with Interval Server.
psql must be installed for this command to work.
You must provide a DATABASE_URL
environment variable of the form postgresql://username:password@host:port/dbname
when running this command.
By default, the db-init
command will attempt to create a database with the name provided in your DATABASE_URL
environment variable. If you've already created the database and just need to apply create the appropriate tables etc., you can run interval-server db-init --skip-create
to skip the database creation step.
For our initial release, we're focused on making it easy to setup and run your own Interval Server instance. We'll make it easier to contribute (and document how you can) in the future, but for now we aren't actively soliciting new contributions.