Skip to content

unmade/phonebook

Repository files navigation

Phonebook

Travis CI Coverage Status

Main page image

This is just simple phonebook to store employees contacts. See how it looks

QuickStart

Simply run:

docker-compose up --build

Create superuser for django admin:

docker-compose run web python3 phonebook/manage.py createsuperuser

Don't forget to change password and security settings in secrets

Development

Just run:

docker-compose -f docker-compose.yml -f docker-compose.local.yml up --build

You could set up settings suitable for development in .env file

Testing

To run test locally:

docker-compose -f docker-compose.yml -f docker-compose.test.yml up test