API Test Base application stores data in a folder called <ATB_DATA_DIR>
. Following is the default value:
-
%USERPROFILE%\AppData\Roaming\ApiTestBase
-
~/Library/Application Support/API Test Base
-
The
/data/folder/on/host
you provided in thedocker run
command.
The first time you launch the application, below new folders are created automatically under the <ATB_DATA_DIR>
folder.
database - where system database and a sample database are located. Both are H2 databases.
System database is used to store all test cases, environments, endpoints, etc. you create using API Test Base.
Sample database is for you to play with API Test Base basic features such as REST API testing or database testing. An Article table is in it.
logs - where API Test Base application runtime logs are located.
lib - where you put external libraries when needed.
It is recommended that you back up <ATB_DATA_DIR>/database
folder regularly. Remember to exit the application before backing up.
Changing Configurations
To change configurations like port numbers, modify the <ATB_DATA_DIR>/config.properties
file content, and restart API Test Base.
Changing <ATB_DATA_DIR>
To change <ATB_DATA_DIR>
to a different location, just set an environment variable ATB_DATA_DIR=/path/to/the/new/location
on your operating system, and restart API Test Base.
Mac users
: to set environment variables for applications (launched from Spotlight, Dock, etc.), create a plist file under ~/Library/LaunchAgents folder, and restart the machine. For example:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>io.apitestbase.env</string>
<key>ProgramArguments</key>
<array>
<string>/bin/launchctl</string>
<string>setenv</string>
<string>ATB_DATA_DIR</string>
<string>/Users/zhengwang/atb-data</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>