-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
local branch for running API locally
- Loading branch information
Showing
9 changed files
with
344 additions
and
326 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
insert into AIRPORTS (select * from CSVREAD('src\main\resources\airports.dat')); | ||
-- use this for running locally | ||
insert into AIRPORTS (select * from CSVREAD('C:\VisualStudioCodeWorkspace\demo\OpenFlightsAPI-SpringBoot-AOP-Security-Swagger-master\src\main\resources\airports.dat')); | ||
|
||
insert into ROUTES (select * from CSVREAD('src\main\resources\routes.dat')); | ||
insert into ROUTES (select * from CSVREAD('C:\VisualStudioCodeWorkspace\demo\OpenFlightsAPI-SpringBoot-AOP-Security-Swagger-master\src\main\resources\routes.dat')); | ||
|
||
insert into AIRLINES(select * from CSVREAD('src\main\resources\airlines.dat')); | ||
insert into AIRLINES(select * from CSVREAD('C:\VisualStudioCodeWorkspace\demo\OpenFlightsAPI-SpringBoot-AOP-Security-Swagger-master\src\main\resources\airlines.dat')); | ||
|
||
|
||
-- use this for building and running the application inside Docker container | ||
-- insert into AIRPORTS (select * from CSVREAD('src\main\resources\airports.dat')); | ||
|
||
-- insert into ROUTES (select * from CSVREAD('src\main\resources\routes.dat')); | ||
|
||
-- insert into AIRLINES(select * from CSVREAD('src\main\resources\airlines.dat')); |
Binary file not shown.
314 changes: 157 additions & 157 deletions
314
build/reports/tests/test/classes/com.foxtel.spring.demo.test.FlightControllerTest.html
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
312 changes: 156 additions & 156 deletions
312
build/test-results/test/TEST-com.foxtel.spring.demo.test.FlightControllerTest.xml
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
insert into AIRPORTS (select * from CSVREAD('src\main\resources\airports.dat')); | ||
-- use this for running locally | ||
insert into AIRPORTS (select * from CSVREAD('C:\VisualStudioCodeWorkspace\demo\OpenFlightsAPI-SpringBoot-AOP-Security-Swagger-master\src\main\resources\airports.dat')); | ||
|
||
insert into ROUTES (select * from CSVREAD('src\main\resources\routes.dat')); | ||
insert into ROUTES (select * from CSVREAD('C:\VisualStudioCodeWorkspace\demo\OpenFlightsAPI-SpringBoot-AOP-Security-Swagger-master\src\main\resources\routes.dat')); | ||
|
||
insert into AIRLINES(select * from CSVREAD('src\main\resources\airlines.dat')); | ||
insert into AIRLINES(select * from CSVREAD('C:\VisualStudioCodeWorkspace\demo\OpenFlightsAPI-SpringBoot-AOP-Security-Swagger-master\src\main\resources\airlines.dat')); | ||
|
||
|
||
-- use this for building and running the application inside Docker container | ||
-- insert into AIRPORTS (select * from CSVREAD('src\main\resources\airports.dat')); | ||
|
||
-- insert into ROUTES (select * from CSVREAD('src\main\resources\routes.dat')); | ||
|
||
-- insert into AIRLINES(select * from CSVREAD('src\main\resources\airlines.dat')); |