Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Reverts the use of Pretty for actual API useHEADmaster | Matthew Lemon | 2024-06-07 | 1 | -4/+4 |
| | |||||
* | Couple of minor fixes | Matthew Lemon | 2024-06-03 | 1 | -3/+2 |
| | |||||
* | Formatting only | Matthew Lemon | 2024-06-03 | 1 | -1/+2 |
| | |||||
* | Rips out Postgres - but leaves migration files for now | Matthew Lemon | 2024-06-03 | 1 | -23/+4 |
| | | | | | | | | | | | | | | | - this does not yet remove the models - uses sqlite3 driver - changes the config based on sqlite3 - tests pass but no depth in investigating the models The sqlite3 database is going to be used for storing user data and tokens only - we are not going to store the models in a database at this point. If we want to start saving datamaps, datamaplines, returns and returnlines, etc, we will need the models but as of this commit the models are still in the code. | ||||
* | Spelling fixes and adds a newline | Matthew Lemon | 2024-06-01 | 2 | -7/+7 |
| | | | | | | Adds a mere newline... Fixes spelling mistakes | ||||
* | Can now parse a return XLSX file | Matthew Lemon | 2024-05-31 | 1 | -21/+20 |
| | | | | | | | | | | | | | | | | 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. | ||||
* | Some tidying | Matthew Lemon | 2024-05-29 | 1 | -17/+16 |
| | |||||
* | Nice refactoring | Matthew Lemon | 2024-04-20 | 2 | -13/+36 |
| | | | | The FilePreparer interface is now nicer. | ||||
* | wip: bad implementation of unzip | Matthew Lemon | 2024-04-20 | 2 | -0/+36 |
| | |||||
* | wip: testing the file package interface | Matthew Lemon | 2024-04-20 | 2 | -14/+35 |
| | |||||
* | First parse of an Excel file | Matthew Lemon | 2024-04-19 | 6 | -68/+386 |
| | |||||
* | First test and first appearance of returns code | Matthew Lemon | 2024-04-12 | 4 | -155/+319 |
| | | | | | | | Test a function that gets all sheets from a datamap struct. A new function to handle a datamap and a return together in one POST request. | ||||
* | Completion of stateless API for datamap create | Matthew Lemon | 2024-04-12 | 1 | -0/+1 |
| | |||||
* | Adds back old JSON-based handler | Matthew Lemon | 2024-04-12 | 1 | -0/+58 |
| | |||||
* | Adds ability to save a single datamap to the database | Matthew Lemon | 2024-04-10 | 3 | -9/+94 |
| | |||||
* | First introduction of migrations using golang-migrate | Matthew Lemon | 2024-04-10 | 2 | -6/+8 |
| | |||||
* | Adds some database pool configuration and flags | Matthew Lemon | 2024-04-10 | 1 | -1/+19 |
| | |||||
* | Adds .env file with database dsn in it | Matthew Lemon | 2024-04-10 | 1 | -1/+8 |
| | |||||
* | Postgres implementation now set up and in containers - no tables yet | Matthew Lemon | 2024-04-10 | 1 | -1/+37 |
| | |||||
* | Adds docker compose config file and changes application port | Matthew Lemon | 2024-04-10 | 1 | -1/+4 |
| | |||||
* | Reorganises cmd/ structure for publication on pkg.go.dev | Matthew Lemon | 2024-04-06 | 6 | -0/+419 |
Adds key commands to Makefile |