Skip to content

anson1014/feedback-plugin-backend

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Feedback Plugin for MariaDB Server Backend

This project is the back-end used to collect and show data from MariaDB Server's feedback plugin.

The software is licensed under GPLv2.

Running the project

The backend is written in Django. The recommended way to deploy the project is by using docker-compose.

Dependencies

The host machine only needs docker and docker-compose installed. Follow your distribution's instructions for docker and for docker-compose to install them.

Initial start-up

$ cd docker/
$ docker-compose up --build

The following set of commands will prepare the project for an optimal development workflow.

Running tests

First make sure the container stack is functional, by running docker ps. You should see the following entries:

84c2814a6500   docker_nginx   "nginx -g 'daemon of…"   26 hours ago   Up 26 hours   0.0.0.0:8000->80/tcp, :::8000->80/tcp   docker_nginx_1
c2d0bce78133   docker_web     "/app/entrypoint.sh …"   26 hours ago   Up 26 hours                                           docker_web_1
09e10ff5387a   docker_db      "docker-entrypoint.s…"   26 hours ago   Up 26 hours   3306/tcp                                docker_db_1

Tests are run from within the web container. The command to run all unit tests is:

docker exec -it docker_web_1 python manage.py test

The server listens on port 8000 on the local machine. You can access it via:

http://127.0.0.1:8000

Contributing

The MariaDB Foundation welcomes contributions to this project. Feel free to submit a pull request via the regular GitHub workflow.

For a more in-depth code documentation, have a look at CODING.md

About

Back End for the MariaDB Server Feedback Plugin

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 94.0%
  • Shell 3.4%
  • Dockerfile 2.2%
  • HTML 0.4%