API Maker Configurations
API Maker settings
package.json
file contains all the configurations of API Maker.- You can override those configurations from
.env
file.- To override prefix with
am__
. - Ex:
port
from package.json can be written asam__port
in .env file. - Ex:
jwtOptions.issuer
from package.json can be written asam__jwtOptions__issuer
in .env file and.
will be replaced with__
- To override prefix with
- you can define .env path by passing process level argument.
node main.js --envPath=~/config/.env
serverName | It will be seen in nodes summary dashboard, so you can easily identify different servers. |
processTitle | This will be title of API Maker process when it starts. |
cpuCount |
1 = default. One API Maker process will be created. AUTO = If you give this value, it will create N number of processes where N = CPU core. 2 = It will create 2 API Maker processes. |
port | API Maker will start on this port. |
wsPort | API Maker will start WebSocket connection on this port. So frontend or mobile app can connect to this port for WebSocket notifications. ```json "Default" : "38245" ``` |
mongo_db_connection | Database connection string of API Maker`s internal use. |
logs | |
---|---|
enableLogs | If true, logging is enable. |
mongo_db_connection_logs | Logging database connection string. API Maker will store user's logs in this database. |
logRemoveSchedulerInterval |
API Maker will start log removal scheduler based on this value. Default is every day. |
maxLogsCount |
Maximum amount of logs to keep in log database. API Maker will run scheduler based on `logRemoveSchedulerInterval` and remove older logs. |
redisInternal | |
---|---|
Used by API Maker for it's internal use. It stores user's auto increment values in this redis. Clustering supported. |
|
nodes | List of redis nodes. |
port | Internal redis port. |
host | Internal redis host. |
pass | Internal redis password. |
redisExternal | |
---|---|
Used to give caching support for user's APIs. Clustering supported. |
|
nodes | List of redis nodes. |
port | External redis port. |
host | External redis host. |
pass | External redis password. |
otherRedisClusterOptions | Other redis cluster related options supported by ioredis NPM Package. |
redisValueExpireInSeconds |
Every key set by user in redis will expire automatically after this many seconds. It will keep redis clean. Ex : If you set value 29 over here, it means every key in redis expires after 29 seconds or TTL given by user while setting the key. |
maxCharsResToCache |
1000000 = If value has more than 1000000 characters, it will not be stored in redis. We should not store huge strings in redis. |
jwtOptions | |
---|---|
expiresIn | We can specify Token expire time limit from here, it should be always number in seconds. |
issuer | Specify the API Maker issuer of JWT generator. |
sandbox | |
---|---|
imageName: { sandboxNode : } | |
sandboxReqTimeout | Defines the maximum milliSecond allowed to complete the execution process. |
sandboxCountForAdmin | Process will create these many sandbox environment containers to handle multiple requests. |
removeSandboxInactiveSinceMinutes | Remove sandbox of admins which is not used since this minutes to free resources. For that scheduler will run every (removeSandboxInactiveCron = 10) minutes to check these minutes. (Note : We can give like 0.25 float value also) |
defaultCreation | |
---|---|
apiUserPass | Here, we can set password for the default API User. |
passCommunication |
Used for communication between API Maker frontend and API Maker backend. It's value should be same for all environments of that project in all server deployment. |
passJWT |
Used for generating jwt token. It's value should be same for all environments of that project in all server deployment. |
passDBEncryptDecrypt |
Values in API Maker mongoDB database and passwords in git repository, will be encrypted using this password. It's value should be same for all environments of that project in all server deployment. If value is not same, API Maker will not able to decrypt git repository values. |
feTransferDataValidityInSecondsDefault | Encrypted data sent by frontend or mobile apps, will be expired after this many seconds. |
refreshTokenValidForS | Refresh token will be valid after these many seconds of expiring access token. |
importDefaultUsers | API Maker will insert default users from this JSON file when these emails are not present in API Maker's MongoDB. |
compressThreshold | If response is greater than 51200 characters then it will be compressed otherwise not. |
bodyLimit | Defines the maximum payload in bytes, the server is allowed to accept. |
cron_job_time_zone | API Maker's internal schedulers will run on this time zone. |
store_url | API Maker will install APIs from store from below URL. |
maximum_test_user_count | Fetch maximum these many test usernames from table if count is not provided in schema |
uploadedFileCleaningSchedulerCron |
Scheduler will run every this much time and clean files which are older than uploadedFileRemoveOlderThanThisTimeInSeconds. Default : 30 minutes |
uploadedFileRemoveOlderThanThisTimeInSeconds |
Remove uploaded files older than time specified in second at this field. Default : 1800 seconds (30 Minutes) |