21 lines
429 B
Markdown
21 lines
429 B
Markdown
# meal-plan-frontend
|
|
|
|
This folder is part of the **DailyMeals** solution. Open `../DailyMeals.sln` in Rider, not this directory alone.
|
|
|
|
## npm without Homebrew
|
|
|
|
From the **DailyMeals** root:
|
|
|
|
```bash
|
|
./scripts/install-node.sh
|
|
cd meal-plan-frontend
|
|
../scripts/npm install
|
|
../scripts/npm run dev
|
|
```
|
|
|
|
Or add to your shell for this session:
|
|
|
|
```bash
|
|
export PATH="$(cd .. && pwd)/.toolchain/node-v22.22.0-darwin-arm64/bin:$PATH"
|
|
```
|