CLI to install project (#164)

* CLI to install project

* CLI fixes

* Update README.md

* Cleanup gitignore
This commit is contained in:
Félix Malfait
2023-06-01 09:19:49 +02:00
committed by GitHub
parent 7d87598953
commit e8f1146ae1
22 changed files with 6639 additions and 0 deletions

8
cli/__tests__/config.ts Normal file
View File

@ -0,0 +1,8 @@
import { execShell } from '../src/config';
export {};
test('execShell runs a shell command', async () => {
let response = await execShell('echo "hello"');
expect(response).toEqual('hello\n');
});