Go to file
Andreas Zweili 8310a1569a correct the static files setup 2020-04-20 15:22:48 +02:00
.vscode add migrate as a launch parameter 2020-03-17 21:51:26 +01:00
backups remove the names of some overly large capitalists 2020-03-15 19:54:43 +01:00
computers remove the names of some overly large capitalists 2020-03-15 19:54:43 +01:00
core correct the static files setup 2020-04-20 15:22:48 +02:00
customers remove the names of some overly large capitalists 2020-03-15 19:54:43 +01:00
devices remove the names of some overly large capitalists 2020-03-15 19:54:43 +01:00
docs extend the tasks 2020-03-25 09:33:05 +01:00
licenses remove the names of some overly large capitalists 2020-03-15 19:54:43 +01:00
nets remove the names of some overly large capitalists 2020-03-15 19:54:43 +01:00
network_inventory correct the static files setup 2020-04-20 15:22:48 +02:00
nginx add a nginx container as a reverse proxy 2020-02-15 17:58:16 +01:00
requirements remove django-bootstrap4 2020-02-28 17:32:25 +01:00
softwares correct OperationSystem fixtures 2020-01-12 13:20:42 +01:00
users remove the names of some overly large capitalists 2020-03-15 19:54:43 +01:00
.coveragerc ignore the admin views in the coverage report 2020-03-03 08:40:19 +01:00
.dir-locals.el move .dir-locals.el to the actual project root 2020-01-09 22:01:05 +01:00
.env-example disable debugging mode in the example .env file 2020-02-15 15:25:36 +01:00
.flake8 reformat the flake8 config 2020-03-01 12:42:43 +01:00
.gitignore correct the static files setup 2020-04-20 15:22:48 +02:00
.travis.yml copy the .env file before building the container 2020-02-15 15:21:39 +01:00
Dockerfile split the requirements and settings 2019-07-13 12:37:58 +02:00
LICENSE Initial commit 2017-12-21 23:11:33 +01:00
Makefile add a cleanall command to the Makefile 2020-01-12 14:00:56 +01:00
README.md extend the README 2020-02-15 15:25:54 +01:00
conftest.py remove the names of some overly large capitalists 2020-03-15 19:54:43 +01:00
development.sh collect static files at the first run 2020-03-20 12:00:37 +01:00
docker-compose.yml add a nginx container as a reverse proxy 2020-02-15 17:58:16 +01:00
manage.py restructure the project 2020-01-07 18:10:57 +01:00
pytest.ini disable pytest legacy message for junit 2019-11-30 13:31:43 +01:00
run.sh collect static files at the first run 2020-03-20 12:00:37 +01:00

README.md

network_inventory

Build Status

I started this project in order to have solution for keeping an inventory over my various servers and other network equipment.

Setup

  1. Clone the repository
  2. Now decide if you want to develop fully locally or inside the docker container. Locally you'll use SQlite for the database and inside the Docker container you'll use Postgres for the database. For the moment there aren't any features implemented which require Postgres. However this might change in the future and SQlite is not supported for production.
  3. Copy the .env-example file to .env and change the POSTGRES_PASSWORD and DJANGO_SECRET_KEY variables to something secure.

Local Setup

  1. Run make local to create the virtual environment for development. You're now all set to start developing.

Docker Setup

  1. Run make to start the development server. You can access it at http://localhost:8000 . You're now all set to start developing.
    If you need to run migrations you can simply restart the Docker container.

Environment Variables

To customise the application in the Docker container you can use environment variables in the docker-compose.yml file. Currently the following variables are supported.

  • DJANGO_SECRET_KEY the secret key is mandatory, otherwise the application doesn't run. Make sure that it is some long random string.
  • DJANGO_DEBUG settings this variable to any value enables the Django debug mode. Make sure that you don't set it on a production server.
  • DJANGO_SETTINGS_MODULE the path to the settings file to use in the container. This requires a dotet syntax. The default is network_inventory.settings.docker.

Todos

  • Create an Nginx configuration
  • extend the CSS
    • A more centered layout would be nice
    • Maybe some colours
  • include a RAID calculator
  • calculate the used space on a host Means calculate the size all the VMs would use if they were thick.