Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Приложение для терминала. Часть 2 #3

Merged
merged 9 commits into from
Aug 19, 2024
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@
.DS_Store
coverage
*.log
*.tsv
6 changes: 6 additions & 0 deletions Workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ npm run ts -- <Путь к модулю с ts-кодом>
npm start
```

#### Запустить JSON-сервер

```bash
npm mock:server
```

В процессе запуска проекта будет выполнен процесс «Сборки проекта» и запуска результирующего кода.

## Структура проекта
Expand Down
61 changes: 61 additions & 0 deletions mocks/mock-server-data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"api": {
"title": [
"The Pondhouse - A Magical Place",
"Waterfront with extraordinary view",
"Loft Studio in the Central Area",
"Beautiful & luxurious apartment at great location",
"House in countryside",
"Canal View Prinsengracht",
"The Joshua Tree House",
"Amazing and Extremely Central Flat",
"Perfectly located Castro",
"The house among olive",
"Canal View Prinsengracht",
"Wood and stone place",
"Tile House"
],
"type": [
"room",
"apartment",
"house",
"hotel"
],
"city": [
"Paris",
"Cologne",
"Brussels",
"Amsterdam",
"Hamburg",
"Dusseldorf"
],
"description": [
"A new spacious villa, one floor. All commodities, jacuzzi and beautiful scenery. Ideal for families or friends.",
"This is a place for dreamers to reset, reflect, and create. Designed with a 'slow' pace in mind, our hope is that you enjoy every part of your stay; from making local coffee by drip in the morning, choosing the perfect record to put on as the sun sets.",
"I am happy to welcome you to my apartment in the city center! Three words: location, cosy and chic!",
"Peaceful studio in the most wanted area in town. Quiet house Near of everything. Completely renovated. Lovely neighbourhood, lot of trendy shops, restaurants and bars in a walking distance.",
"Design interior in most sympathetic area! Complitely renovated, well-equipped, cosy studio in idyllic, over 100 years old wooden house. Calm street, fast connection to center and airport."
],
"goods": [
"Breakfast",
"Air conditioning",
"Laptop friendly workspace",
"Baby seat",
"Washer",
"Towels",
"Fridge"
],
"users": [
"Donatello",
"Leonardo",
"Michelangelo",
"Raphael"
],
"emails": [
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]"
]
}
}
Loading
Loading