@@ -15,12 +15,12 @@ An [abandoned](https://github.com/WillSams/example-mvc-expressjs-with-python/tre
15
15
16
16
** Context** :
17
17
18
- * When a room is reserved, it cannot be reserved by another guest on overlapping dates.
19
- * Whenever there are multiple available rooms for a request, the room with the lower final price is assigned.
20
- * Whenever a request is made for a single room, a double bed room may be assigned (if no single is available?).
21
- * Smokers are not placed in non-smoking rooms.
22
- * Non-smokers are not placed in allowed smoking rooms.
23
- * Final price for reservations are determined by daily price * num of days requested, plus the cleaning fee.
18
+ - When a room is reserved, it cannot be reserved by another guest on overlapping dates.
19
+ - Whenever there are multiple available rooms for a request, the room with the lower final price is assigned.
20
+ - Whenever a request is made for a single room, a double bed room may be assigned (if no single is available?).
21
+ - Smokers are not placed in non-smoking rooms.
22
+ - Non-smokers are not placed in allowed smoking rooms.
23
+ - Final price for reservations are determined by daily price * num of days requested, plus the cleaning fee.
24
24
25
25
** Web UI Usage** :
26
26
@@ -64,19 +64,19 @@ curl http://localhost:$RESERVATION_PORT/development/graphql \
64
64
65
65
Navigate to [ http://localhost:$RESERVATION_PORT/docs ] ( http://localhost:$RESERVATION_PORT/docs ) .
66
66
67
- ![ text ] ( ./frontend/src /public/img/openapi_example.png )
67
+ ![ backend/docs ] ( ./frontend/public/img/openapi_example.png )
68
68
69
69
## Pre-requisites
70
70
71
71
To run the service, you will need to install the following tools.
72
72
73
- * [ NodeJS] ( https://nodejs.org/en/ )
74
- * [ Docker] ( https://www.docker.com/ )
73
+ - [ NodeJS] ( https://nodejs.org/en/ )
74
+ - [ Docker] ( https://www.docker.com/ )
75
75
76
76
The below are optional but highly recommended:
77
77
78
- * [ nvm] ( https://github.com/nvm-sh/nvm ) - Used to manage NodeJS versions.
79
- * [ Direnv] ( https://direnv.net/ ) - Used to manage environment variables.
78
+ - [ nvm] ( https://github.com/nvm-sh/nvm ) - Used to manage NodeJS versions.
79
+ - [ Direnv] ( https://direnv.net/ ) - Used to manage environment variables.
80
80
- Install [ direnv] ( https://direnv.net ) for persisting environment variables needed for development.
81
81
82
82
## Getting Started
0 commit comments