Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SanctumLabs/contact-manager-cli
Manage your contacts from your command line
https://github.com/SanctumLabs/contact-manager-cli
cli cloud-functions firebase firebase-cloud-functions firebase-database node-cli
Last synced: 3 months ago
JSON representation
Manage your contacts from your command line
- Host: GitHub
- URL: https://github.com/SanctumLabs/contact-manager-cli
- Owner: SanctumLabs
- License: mit
- Created: 2017-11-17T04:59:11.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-10-06T19:21:57.000Z (about 2 years ago)
- Last Synced: 2024-07-29T16:37:10.632Z (4 months ago)
- Topics: cli, cloud-functions, firebase, firebase-cloud-functions, firebase-database, node-cli
- Language: JavaScript
- Size: 980 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - SanctumLabs/contact-manager-cli - Manage your contacts from your command line (JavaScript)
README
# Contact Manager CLI
Small command line tool to create contacts from your terminal. Utilizes [Google Cloud Functions](https://cloud.google.com/functions/) for HTTP triggers, [Firebase](https://firebase.google.com) for persistent storage and plain old [NodeJS](https://nodejs.org/en/).
## Getting Started
These simple steps will get you a working copy of the application.
```bash
$ git clone https://github.com/Wyvarn/contact-manager-cli.git
```
> this will clone the repo and create a contact-manager-cli directoryIf you prefer a different name for the project
```bash
$ git clone https://github.com/Wyvarn/contact-manager-cli ~/
```## Requirements
You will need a couple of things to get started:
1. *NodeJS and npm*
Ensure you have NodeJS installed on your environment. You can get installation instructions from [here](https://nodejs.org/en/download/)
2. *Firebase CLI*
Get firebase-tools installed on your development environment. This will be used to manage the project and configure Cloud functions.```bash
$ npm install -g firebase-tools
```More instructions on using firebase-tools can be found [here](https://firebase.google.com/docs/cli/)
## Setting up
Setting up the project is easy, once you have all the requirements checked, then you can setup as follows:
``` bash
$ npm install
# if using yarn
$ yarn install
```
> This will install all the dependencies you need in node_modules/ directoryOnce you have installed dependencies here, change directory into `firefunctions/functions` and install dependencies there too
```bash
$ cd firefunctions/functions
$ npm install # or yarn install
```Now you can use `firebase-tools` to setup your project with firebase
``` bash
$ firebase login # logs you into firebase console
```## Running the app
You will need to setup a project on Firebase console after which you can enable the project in the firefunctions directory.
```bash
$ cd firefunctions
$ firebase use
```Next step is to deploy functions:
```bash
$ npm run deploy
```
> Run this command inside the `firefunctions` directoryAfter which you can take the CLI for a run.
```bash
$ cd .. # if in the firefunctions directory
$ npm run build
$ npm install -g
$ npm link # not necessary
```This will run a build and transpile the code before setting it in the build/ directory. You can then install it globally and link if necessary.
One thing to keep in mind: During development, any change you make in the project will not be visible if you simply execute the contact command with the given options. If you run `which contact-manager`, you will realize that the path of contact is not the same as the project path in which you are working. To prevent this, simply run `npm link` in your project folder. This will automatically establish a symbolic link between the executable command and the project directory. Henceforth, whatever changes you make in the project directory will be reflected in the contact command as well.
[![forthebadge](http://forthebadge.com/images/badges/uses-js.svg)](http://forthebadge.com)
[![forthebadge](http://forthebadge.com/images/badges/built-with-grammas-recipe.svg)](http://forthebadge.com)