Skip to content

Open source Java framework for business application development

License

Notifications You must be signed in to change notification settings

dongshengjun/axelor-development-kit

 
 

Repository files navigation

Axelor Development Kit

License: AGPL v3

Axelor Development Kit (ADK) is an open source Java framework for business application development.

This README describes how to get started quickly and prepare the development environment for working with the sources.

Prerequisite

We recommend to use Oracle JDK. The OpenJDK distributed with most of the Linux distributions may work but we have not tested it extensively.

$ export JAVA_HOME=/path/to/jdk
$ export PATH=$JAVA_HOME/bin:$PATH

Install PostgreSQL from your Linux distribution’s package repositories.

For ubuntu, you can do this:

$ sudo apt-get install postgresql

Installation

Download the latest distribution package or get the source from the repository.

$ git clone https://github.com/axelor/axelor-development-kit.git

$ cd /path/to/axelor-development-kit
$ ./gradlew installDist

$ export AXELOR_HOME=/path/to/axelor-development-kit/build/install/axelor-development-kit
$ export PATH=$AXELOR_HOME/bin:$PATH

You should have a special command axelor in your path now. Just try issuing following command on the terminal:

$ axelor --help

You should see output something like this:

Usage: axelor [--help] [--new <NAME>]
Run the interactive shell or create a new axelor project.

  -h, --help          show this help and exit
  -v, --version       display version information
      --new <NAME>    create a new application project

You can also execute shell commands directly like:

  axelor help
  axelor help run
  axelor clean
  axelor build
  axelor run -p 8000

See detailed documentation at http://docs.axelor.com/adk.

The command line utility can also be used in interactive mode where the utility runs in a special shell from where you can issue various commands.

What’s Next?

Please check the documentation for more detailed introduction.

Links

About

Open source Java framework for business application development

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 63.5%
  • Java 29.4%
  • CSS 4.9%
  • Groovy 1.6%
  • Other 0.6%