Configuration
Last updated
Last updated
Here is a list of all configurable environment variables for Asyncher:
pull_url
Your server endpoint that is used to fetch all data.
push_url
Your server endpoint that is used to push all data after sync.
unique_key
"unique"
The name you want to use for the field that uniquely identifies the data.
primary_key
"id"
The name of the field you are using as the primary key. It only serves to be ignored during the various synchronization steps.
is_new_key
"is_new"
The field name you are using to indicate if the data is new. .
updated_key
"updated"
The field name you are using to indicate if the data has been edited. .
deleted_key
"deleted"
The field name you are using to indicate if the data has been deleted. .
sorting_key
If you are using a field that needs to be sorted, use this env var to specify its name. .
created_at_key
If you have a field that keeps track of when data is created, use this env var to specify its name. .
updated_at_key
If you have a field that keeps track of when data is updated, use this env var to specify its name. .
deleted_at_key
If you have a field that keeps track of when data is deleted, use this env var to specify its name. .