7 lines
230 B
Plaintext
7 lines
230 B
Plaintext
|
#!/bin/bash
|
||
|
npm install
|
||
|
cp config.example.toml config.toml
|
||
|
$EDITOR config.toml
|
||
|
echo "Run the program with `./development` in development mode or build the project"
|
||
|
echo "using `npm run build` and then `npm start` for production!"
|