Cmd line notes cli tool and database backend.
- Set
.envvariables - Backend daemon:
docker-compose up --build -d
- Shell client:
pipenv shell
pipenv install
python notesClient.py <cmd>
Create alias in ~/.zshrc or ~/.bashrc
alias note='python <PWD>/client/notesClient.py'
- Docker
- MongoDB
- NodeJs/express
- Python 3.7.0
- Pipenv/virtualenv
├── backend
│ ├── backend.js
│ ├── Dockerfile
│ ├── package.json
│ ├── .env.template
│ └── package-lock.json
├── client
│ ├── noteclienv/
│ ├── notesClient.py
│ ├── note.sh
│ ├── .env.template
│ ├── Pipfile
│ ├── Pipfile.lock
│ └── requirements.txt
├── docker-compose.yml
├── docs
│ └── notestoolscreenshot.png
├── makefile
├── mongodb.env.template
└── README.md
