Skip to content

shannon-donahue/ansible-events-ui

 
 

Repository files navigation

A UI for ansible-events

Setting up a development environment

1. Install taskfile

Taskfile is a task runner that aims to be simpler and easier replacement for a GNU Make.

Install taskfile following the installation guide.

2. Clone the repository

First you need to clone the ansible-events-ui repository:

git clone https://github.com/benthomasson/ansible-events-ui.git
cd ansible-events-ui

3. Virtual environment

Create virtual environment and install project

python -m venv .venv
source .venv/bin/activate
pip install -e .

Install Ansible and benthomasson.eda collection:

pip install ansible
ansible-galaxy collection install benthomasson.eda

4. Services

You need to set up a PostgreSQL database sever. The easiest way is using the docker-compose:

docker-compose -p ansible-events -f tools/docker/docker-compose.yml up -d postgres

Then run database migrations:

alembic upgrade head

5. User interface

Build UI files (requires Node >= v16):

cd ui
npm install
npm run build
cd ..

6. Start server

ansible-events-ui

Visit this url: http://localhost:8080/docs#/auth/register_register_api_auth_register_post

Click "Try it out" on /api/auth/register

Change email and password

Click execute

Visit this url: http://localhost:8080/eda

Also you can check the openapi specification.

You have set up the development environment.

Run the application with docker-compose

Requires docker-compose installed. See the documentation for instructions. (latest stable version is recommended)

cd tools/docker
docker-compose up --build

Run the application on Minikube

Requires:

  • installation of Kubernetes CLI (kubectl)
  • installation of kustomize
  • installation of minikube
  • installation of docker
  • bash, version 5.1.* or above

Start minikube if it is not already running

minikube start

Check that minikube instance is up

minikube status

Build image and deployment files. (If you do not provide an image:version as shown below it will default to "eda:latest")

task minikube:build -- eda:001

Deploy application to minikube. (If you do not provide an image:version as shown below it will default to "eda:latest")

task minikube:deploy -- eda:001

Forward the webserver port to local host. (If you do not provide a local port it will default to "8080")

task minikube:fp:ui -- 8080

In a second terminal run the following cmd to create a dev user with a password of none2tuff. (You will use this to log into the console.)

scripts/createuser.sh [email protected] none2tuff

Visit this url: http://localhost:8080/eda

  • Note: Instead of running the above build, deploy, and minikube-fp-ui tasks individually. It is possible to do the following, being mindful that it will use default values.
$ task minikube:all

You have set up the development environment.

Running tests

If not started, start the PostgreSQL service, which is required for running integration tests.

docker-compose -f tools/docker/docker-compose.yml up postgres

Run all tests:

task test

Or call pytest directly:

python -m pytest 

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 54.3%
  • Python 37.3%
  • JavaScript 5.3%
  • Shell 2.6%
  • Dockerfile 0.2%
  • Mako 0.1%
  • Other 0.2%