-
Good time of the year! Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You are looking at 2 different ways to start up an AceBase server.
|
Beta Was this translation helpful? Give feedback.
You are looking at 2 different ways to start up an AceBase server.
const server = new AceBaseServer(dbname, options)
. This is the documented and preferred way to start up a server.npm run test
ornpm run start
ornode ./dist/esm/start.js .DBNAME=mydb ....
. This allows starting up a server using command line arguments and/or environment variables to configure it. Not all options are available this way.