Skip to content

Instantly share code, notes, and snippets.

@ninoseki
Last active February 17, 2021 08:02
Show Gist options
  • Save ninoseki/83d65b020c86f67f822eb50c56756201 to your computer and use it in GitHub Desktop.
Save ninoseki/83d65b020c86f67f822eb50c56756201 to your computer and use it in GitHub Desktop.

IntelOwl installation guide

git clone https://github.com/intelowlproject/IntelOwl
cd IntelOwl

# copy env files
cp env_file_postgres_template env_file_postgres
cp env_file_app_template env_file_app

# edit env files before starting the app
# see https://intelowl.readthedocs.io/en/latest/Installation.html#deployment-preparation
# note that you should change "MOCK_CONNECTIONS = False" to "MOCK_CONNECTIONS=False" in env_file_app.

# start the app
docker-compose up

# create a super user 
docker exec -ti intel_owl_uwsgi python3 manage.py createsuperuser

# now the app is running on localhost:80
@eshaan7
Copy link

eshaan7 commented Jul 14, 2020

Amazing, Thankyou! A fix for the whitespace around = bug will be pushed soon.

@BlueSideStrongSide
Copy link

THanks for the notes!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment