https://github.com/unmade/phonebook
Just phonebook to store employees contacts
https://github.com/unmade/phonebook
Last synced: about 1 month ago
JSON representation
Just phonebook to store employees contacts
- Host: GitHub
- URL: https://github.com/unmade/phonebook
- Owner: unmade
- License: mit
- Created: 2016-03-10T09:13:32.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-03-25T20:05:00.000Z (about 7 years ago)
- Last Synced: 2025-02-14T23:34:16.592Z (3 months ago)
- Language: Python
- Homepage:
- Size: 5.35 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Phonebook

[](https://coveralls.io/github/unmade/phonebook?branch=coveralls)
This is just simple phonebook to store employees contacts.
See how it [looks](docs/LOOK.md)## 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](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
```