aboutsummaryrefslogtreecommitdiffstats
path: root/resources (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Can now parse a return XLSX fileMatthew Lemon2024-05-311-0/+0
| | | | | | | | | | | | | | | | We can now submit a datamap.csv and a single return xlsx file using the following command, and get a Return JSON string back with the parsed date: `curl -X POST -F "file=@./datamap.csv" -F "returnfile=@./resources/test_two_sheets.xlsm" \ -F "name=bobbins" -F "description=This is a long description of the datamap." \ http://localhost:5000/v1/return` I have renamed the old test.xlsm file here to test_two_sheets.xlsm - having remove a sheet from the test.xlsm. I did this to ensure that the parsing handles multiple sheets which it does. Still a fair amount of clearning up here but if you run the server and send in this request, it works.
* Adds example Docker bash deployment scriptMatthew Lemon2024-04-101-0/+92
|
* Adds ability to save a single datamap to the databaseMatthew Lemon2024-04-101-0/+1
|
* First introduction of migrations using golang-migrateMatthew Lemon2024-04-102-0/+40
|
* Created a Docker file for the projectMatthew Lemon2024-04-052-0/+1960