Pydantic 2, better cli, docker-compose #71
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
📑 Description
This pull request include several updated
run
command.Example:
unipoll-api run --host=0.0.0.0 --reload
. Each command has it own help, for example, to get help withrun
command you can rununipoll-api run --help
.The available commands:
unipoll-api run
- will run the server, it accepts all the old optional arguments(host, port, reload)unipoll-api setup
- is the new command which interactively asks user for input to setup the application and save it to.env
fileunipoll-api get-openapi
- generates an OpenAPI JSON schema and saves it in theopenapi.json
file. This will be convenient later for use with postman CI action.docker-compose.yaml
was added. Using docker compose, the user can create a stack of a MongoDB server and the API application.