- Translated and reorganized instructions for running the app on the iOS simulator. - Added specific commands for terminal usage and emphasized the importance of executing commands from the correct project directory. - Removed outdated sections and streamlined the content for clarity and relevance. This update enhances the documentation for developers working with the iOS simulator.
24 lines
582 B
Markdown
24 lines
582 B
Markdown
# Запуск на симуляторе (Mac)
|
|
|
|
**Терминал** (⌘ + `):
|
|
|
|
```bash
|
|
cd /Users/commercesparkit.by/Desktop/projekt/be_happy_public
|
|
export LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8
|
|
open -a Simulator
|
|
flutter run
|
|
```
|
|
|
|
Первый раз или после обновления кода:
|
|
|
|
```bash
|
|
cd /Users/commercesparkit.by/Desktop/projekt/be_happy_public
|
|
export LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8
|
|
flutter pub get
|
|
cd ios && pod install && cd ..
|
|
open -a Simulator
|
|
flutter run
|
|
```
|
|
|
|
Важно: команды только из папки `be_happy_public`, не из `~`.
|