Difference between revisions of "Start Scripts"

From BaseX Documentation
Jump to navigation Jump to search
Line 15: Line 15:
 
REM Paths to distributed files or source directories
 
REM Paths to distributed files or source directories
 
set BXPATH=basex.jar
 
set BXPATH=basex.jar
REM set BXPATH=%PWD%/../target/classes
 
  
 
REM Options for virtual machine
 
REM Options for virtual machine
Line 36: Line 35:
 
# Paths to distributed files or source directories
 
# Paths to distributed files or source directories
 
BXPATH=basex.jar
 
BXPATH=basex.jar
#BXPATH=$PWD/../target/classes
 
  
 
# Options for virtual machine
 
# Options for virtual machine

Revision as of 22:35, 11 January 2011

The starting script files mentioned in the startup overview are available in the BaseX.zip or with the Windows Installer. They can be used for every mode of BaseX and started on every operating system. If you didn't download them or can't find them you can use the scripts below on that page.

All modes of BaseX can be started with the following scripts (you might need to modify the path to the BaseX.jar archive in the script):

Windows

@setlocal
@echo off

REM Path to this script
set PWD=%~dp0

REM Paths to distributed files or source directories
set BXPATH=basex.jar

REM Options for virtual machine
set VM=-Xmx1g

REM Run BaseX
java -cp "%BXPATH%" %VM% org.basex.XXX %*

@endlocal

Linux/Mac

#!/bin/bash

# Path to this script
PWD=`dirname $0`

# Paths to distributed files or source directories
BXPATH=basex.jar

# Options for virtual machine
VM=-Xmx1g

# Run BaseX
java -cp "$BXPATH" $VM org.basex.XXX "$@"

Note: You have to replace 'XXX' in the Java command line with the mode you want to start, which is either BaseXServer, BaseXGUI, or BaseX.