Skip to content
This repository has been archived by the owner on Dec 25, 2022. It is now read-only.

Commit

Permalink
Merge pull request #124 from tubone24/add_typescript
Browse files Browse the repository at this point in the history
Add typescript
  • Loading branch information
tubone24 committed Jul 23, 2019
2 parents ada9bbb + 095aacf commit eb2cd69
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
recursive-include ebook_homebrew *.yaml
recursive-include ebook_homebrew/static *.html
recursive-include ebook_homebrew/static/favicon.ico
recursive-include ebook_homebrew/static favicon.ico
recursive-include ebook_homebrew/static/js *.js *.map
recursive-include ebook_homebrew/static/css *.css *.map
recursive-include ebook_homebrew/static/img *.png
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pypi-upload:
twine upload --repository pypi dist/*

docker-build:
docker build -t ebook-homebrew docker
docker build --no-cache=true -t ebook-homebrew docker

docker-run:
docker run --rm --name ebook-homebrew -e PORT=8082 -p 8082:8082 ebook-homebrew
Expand Down
4 changes: 4 additions & 0 deletions ebook_homebrew/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ class FileNotFoundRespSchema(Schema):
errorDate = fields.Date()


# Vue Sampled
api.add_route("/", static=True)
api.add_route("/js", static=True)
api.add_route("/css", static=True)
api.add_route("/img", static=True)


@api.route("/status")
Expand Down

0 comments on commit eb2cd69

Please sign in to comment.