16 lines
237 B
Markdown
16 lines
237 B
Markdown
|
# Project Setup
|
||
|
|
||
|
## dev environment
|
||
|
|
||
|
```
|
||
|
sudo apt install npm
|
||
|
sudo npm install -g npx
|
||
|
|
||
|
# maybe
|
||
|
sudo npm install -g shadow-cljs
|
||
|
|
||
|
# in project root to retrieve all dependencies
|
||
|
npm install --ignore-scripts
|
||
|
npx shadow-cljs compile test
|
||
|
```
|