This repository has been archived by the owner on Jun 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
25c6739
commit b7ec64a
Showing
4 changed files
with
43 additions
and
3 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
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Uncomment this if your project is hosted on GitHub: | ||
# github_url = "https://github.com/<user or organization>/<project>/" | ||
|
||
[version] | ||
current = "v0.0.0" | ||
|
||
# Example of a semver regexp. | ||
# Make sure this matches current_version before | ||
# using tbump | ||
regex = ''' | ||
(?P<major>\d+) | ||
\. | ||
(?P<minor>\d+) | ||
\. | ||
(?P<patch>\d+) | ||
''' | ||
|
||
[git] | ||
message_template = "Bump to {new_version}" | ||
tag_template = "v{new_version}" | ||
|
||
# For each file to patch, add a [[file]] config | ||
# section containing the path of the file, relative to the | ||
# tbump.toml location. | ||
[[file]] | ||
src = "..." | ||
|
||
# You can specify a list of commands to | ||
# run after the files have been patched | ||
# and before the git commit is made | ||
|
||
# [[before_commit]] | ||
# name = "check changelog" | ||
# cmd = "grep -q {new_version} Changelog.rst" | ||
|
||
# Or run some commands after the git tag and the branch | ||
# have been pushed: | ||
# [[after_push]] | ||
# name = "publish" | ||
# cmd = "./publish.sh" |
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 |
---|---|---|
|
@@ -39,4 +39,4 @@ def build(): | |
|
||
|
||
if __name__ == "__main__": | ||
app.run(host="0.0.0.0", port=5000) | ||
app.run(host="0.0.0.0", port=8000) |
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,3 +1,3 @@ | ||
typst==0.3.0 | ||
typst==0.8.0 | ||
flask==2.3.2 | ||
gunicorn |