Skip to content

Commit

Permalink
releases 0.1 (#16)
Browse files Browse the repository at this point in the history
* add black, we-make-style-guide, isort

* isort fix

* mypy fix (=____=)

* isort fix (=____=)

* we-make-styleguide fix 50 issues (ノ ゜Д゜)ノ ︵ ┻━┻

* we-make-styleguide fix 20 issues

* we-make-styleguide fix 15 issues

* mypy fix

* we-make-python-styleguide fix templating.py

* we-make-python-styleguide fix 15 issues

* fix all linters!

* modeus init

* modeus quick fix

* fix linters

* fix modeus bug

* add context manager

* Event search (#11)

* add modues event search controller

* fix 500 error

* fix mypy problems

* poetry.lock

* remove jinja

* black linter

* delete static files

* fix Azamat's code

* delete useless packages

* ruff setup

---------

Co-authored-by: AzamatKomaev <azamatkomaev15@gmail.com>

* add frontend, run it with docker compose (#12)

---------

Co-authored-by: AzamatKomaev <azamatkomaev15@gmail.com>
Co-authored-by: Ivan Popov <ma1n.py@yandex.ru>
Co-authored-by: Azamat <86872713+AzamatKomaev@users.noreply.github.com>
  • Loading branch information
4 people authored and Popov, Ivan_1 committed Sep 26, 2024
1 parent 1d77f1e commit 63f89f5
Show file tree
Hide file tree
Showing 58 changed files with 18,661 additions and 19,038 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,16 @@ jobs:
registry: ${{ env.REGISTRY_URL }}
username: ${{ env.REGISTRY_USERNAME }}
password: ${{ env.REGISTRY_PASSWORD }}
- name: Build & Publish to Github Container registry
- name: Build & Publish backend to Github Container registry
run: |
docker build ./backend --tag $REGISTRY_URL/$REGISTRY_USERNAME/calendarit-backend:latest \
--tag $REGISTRY_URL/$REGISTRY_USERNAME/calendarit-backend:$IMAGE_TAG
docker push $REGISTRY_URL/$REGISTRY_USERNAME/calendarit-backend:latest
docker push $REGISTRY_URL/$REGISTRY_USERNAME/calendarit-backend:$IMAGE_TAG
docker push $REGISTRY_URL/$REGISTRY_USERNAME/calendarit-backend:$IMAGE_TAG
- name: Build & Publish frontend to Github Container registry
run: |
docker build ./frontend --tag $REGISTRY_URL/$REGISTRY_USERNAME/calendarit-frontend:latest \
--tag $REGISTRY_URL/$REGISTRY_USERNAME/calendarit-frontend:$IMAGE_TAG
docker push $REGISTRY_URL/$REGISTRY_USERNAME/calendarit-frontend:latest
docker push $REGISTRY_URL/$REGISTRY_USERNAME/calendarit-frontend:$IMAGE_TAG
1 change: 0 additions & 1 deletion backend/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ def configure_application(
show_error_details=settings.app.show_error_details,
)

app.serve_files("app/static")
configure_error_handlers(app)
configure_authentication(app, settings)
configure_docs(app, settings)
Expand Down
Binary file removed backend/app/static/blacksheep-favicon-white.png
Binary file not shown.
Binary file removed backend/app/static/favicon.ico
Binary file not shown.
Binary file not shown.
Binary file removed backend/app/static/images/blacksheep.png
Binary file not shown.
Binary file removed backend/app/static/img/portfolio/cabin.png
Binary file not shown.
Binary file removed backend/app/static/img/portfolio/cake.png
Binary file not shown.
Binary file removed backend/app/static/img/portfolio/circus.png
Binary file not shown.
Binary file removed backend/app/static/img/portfolio/game.png
Binary file not shown.
Binary file removed backend/app/static/img/portfolio/safe.png
Binary file not shown.
Binary file removed backend/app/static/img/portfolio/submarine.png
Binary file not shown.
63 changes: 0 additions & 63 deletions backend/app/static/scripts/freelancer.js

This file was deleted.

Loading

0 comments on commit 63f89f5

Please sign in to comment.