Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aaroncoplan/text-sender
Command line or webapp based text sender. Prompts for user input and sends messages based on the input parameters.
https://github.com/aaroncoplan/text-sender
Last synced: 7 days ago
JSON representation
Command line or webapp based text sender. Prompts for user input and sends messages based on the input parameters.
- Host: GitHub
- URL: https://github.com/aaroncoplan/text-sender
- Owner: AaronCoplan
- License: apache-2.0
- Created: 2016-09-16T04:55:19.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-21T20:07:04.000Z (over 7 years ago)
- Last Synced: 2024-11-09T12:36:24.799Z (2 months ago)
- Language: Java
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# text-sender
Command line or webapp based text sender. Prompts for user input and sends messages based on the input parameters.
This project is licensed under the MIT License.
## Instructions for how to run single instance:
* Clone the repository: `git clone https://github.com/AaronCoplan/text-sender` or `git clone [email protected]:AaronCoplan/text-sender.git`
* Change directory into the project directory: `cd text-sender/text-sender`
* Run `mvn clean package`
* Run `java -jar target/text-sender-v1.0.0-jar-with-dependencies.jar`
* Respond to the prompts and enjoy!## Instructions for running the webapp:
* Clone the repository: `git clone https://github.com/AaronCoplan/text-sender` or `git clone [email protected]:AaronCoplan/text-sender.git`
* Change directory into the project directory: `cd text-sender/text-sender-webapp/`
* Run `mvn clean package`
* Run `java -jar target/web-app-v0.0.1.jar &` (log file will be named text-bomb-webapp.log)
* In a browser, navigate to http://localhost:8080
* When done, run: `ps aux | grep webapp`
* Get the process number from the results and run: `kill `## Dependencies
The following dependencies must be met in order for the above build instructions to work:
* Maven
* Java
* Git