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

Promote from BLAIS5-4597 to main #1

Merged
merged 40 commits into from
Jan 30, 2025
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
ee77e31
Updated project files, need to add files to test linting etc.
lambeb Jan 21, 2025
5296331
Got the poetry install working. Added some boiler plate code from oth…
lambeb Jan 21, 2025
55c0284
Testing cloud function
lambeb Jan 22, 2025
487ccd4
Without mypy.ini the cloud function was complaining about library imp…
lambeb Jan 22, 2025
bbad0d1
Added code to get questionnaire_name from zip file to send to ingest …
lambeb Jan 23, 2025
4bec4d0
Amended regex to account for the version of the Survey, A, B, etc.
lambeb Jan 23, 2025
11cc3d5
Removed testing code
lambeb Jan 23, 2025
fc58c6e
Cleaned up code
lambeb Jan 24, 2025
31a5e65
Fixed linting errors
lambeb Jan 24, 2025
f9d8ad9
adding more to .gitignore and updated README with instructions to run…
lambeb Jan 24, 2025
a15985b
updated several files to do with testing locally
lambeb Jan 27, 2025
432c158
updated README.md
lambeb Jan 27, 2025
eabc94b
updated README.md
lambeb Jan 27, 2025
006cc43
Adding second argument to process_zip_file
lambeb Jan 28, 2025
9ef99c8
to account for lower case .zip
lambeb Jan 28, 2025
0de5f4c
Fixed regular expression to account for different cases
lambeb Jan 28, 2025
e757ef8
Updated regex
lambeb Jan 28, 2025
65153eb
Updated Regex to get questionnaire_name
lambeb Jan 28, 2025
80dd67e
Updated Regex to get questionnaire_name
lambeb Jan 28, 2025
21b27b7
added code to not call Blaise Handler or Ingest Handler if cannot ret…
lambeb Jan 28, 2025
9cfa3d0
Added some more tests to project
lambeb Jan 28, 2025
601ae19
Fixed various issues with project:
lambeb Jan 28, 2025
a7bc3ed
commenting out tests with parameters, as believe this is causing conc…
lambeb Jan 28, 2025
888a1b9
Copying same structure as blaise-cma-functions to try and run tests o…
lambeb Jan 28, 2025
ac27400
updating poetry.lock file
lambeb Jan 28, 2025
4cc9023
Commented out the tests that are failing on concourse, but running fi…
lambeb Jan 28, 2025
78f4476
reverting due to concourse errors
lambeb Jan 28, 2025
bdebcef
Forgot to update poetry lock file
lambeb Jan 28, 2025
0a1cfb5
added github workflows and removed some unused code
lambeb Jan 29, 2025
59d1e1e
Small change to keep in line witih other repos.
lambeb Jan 29, 2025
a8b6583
Attempting to put test back in that usually fail on concourse
lambeb Jan 29, 2025
fd347c4
Cleaning up code
lambeb Jan 29, 2025
9855833
removing this code caused test to fail. have left out regex.py as tha…
lambeb Jan 29, 2025
7a0b370
Trying to get github actions working
lambeb Jan 29, 2025
f9eef08
Trying to get github actions working
lambeb Jan 29, 2025
854bf05
Trying to get github actions working
lambeb Jan 29, 2025
c5d1377
trying with subfolders
lambeb Jan 30, 2025
b5894c8
updated blaise-restapi to point to main branch
lambeb Jan 30, 2025
7f5794f
updated blaise-restapi to point to main branch
lambeb Jan 30, 2025
ca40fb1
updated blaise-restapi to point to v1.0.1 branch
lambeb Jan 30, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
updated README.md
lambeb committed Jan 27, 2025
commit 432c158e5d15ab708dc64cb7da9cefa3baaededa
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -55,4 +55,12 @@ gcloud compute start-iap-tunnel restapi-1 80 --local-host-port=localhost:8011
export BLAISE_API_URL="localhost:8011"
export BLAISE_SERVER_PARK="gusty"

Run main.py
Need to get files from poetry to requirements.txt by running
```shell
poetry export -f requirements.txt --without-hashes > requirements.txt
```

Then run
```shell
python main.py
```