https://github.com/menduz/tumu
Javascript Serverless CLI
https://github.com/menduz/tumu
Last synced: 2 months ago
JSON representation
Javascript Serverless CLI
- Host: GitHub
- URL: https://github.com/menduz/tumu
- Owner: menduz
- License: mit
- Created: 2020-04-02T15:15:23.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-30T21:05:43.000Z (almost 4 years ago)
- Last Synced: 2025-02-01T18:45:54.882Z (4 months ago)
- Size: 28.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tumu
Javascript Serverless CLIConnects to [Tumu Host](https://github.com/tcoats/tumu-host) instances.
```bash
yarn add global tumu
```Store your parameters in a .env file:
```bash
# .env file
TUMU_HOST=localhost:8080
TUMU_APP=perky-nana
TUMU_FILE=index.js
``````bash
tumu login
tumu new
tumu
tumu logs
tumu logout
```Or provide everything on the command line:
```bash
tumu login localhost:8080
tumu --host localhost:8080 new
tumu --host localhost:8080 --app perky-nana index.js
tumu --host localhost:8080 --app perky-nana logs
tumu --host localhost:8080 logout
```Run it locally
```bash
yarn add global tumu-host
tumu-local
```Or spin up a Tumu host
```bash
yarn add global tumu-host
tumu-host
```# Todo
- [ ] Fix pipe code from stdin
- [ ] Documentation and website# Fixes
- [ ] Garbled status messages when piping input from stdin