Open source version installation

Open source version installation

Open source version environment preparation

  1. To install Python, please go to the official website to download Python( https://www.python.org/ )

  2. Install Django

An environment with Internet access

  • Just use pip to install Django

pip install django

Environment without Internet

  • Download where there is internet first

pip download django
  • Get multiple downloaded whl files and install them one by one on the machine to be installed.

pip install XXX.whl

After completing the environment preparation, you can start the installation.

Open source version installation

After downloading the file ( https://github.com/syscomgo/omflow ), unzip it to the specified folder and execute the following command to start

python manage.py runserver 0.0.0.0:8000

After the installation is complete, use the browser to open the homepage ( http://127.0.0.1:8000/ )

The default user is admin and the password is admin.

Docker version installation and startup

docker pull -a omflow/open
docker run -d --name omflow -p 0.0.0.0:80:80 omflow/open

Last updated