├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── api_service ├── Dockerfile ├── README.md ├── app │ ├── cmd │ │ └── main │ │ │ └── app.go │ ├── config.yml │ ├── go.mod │ ├── go.sum │ ├── internal │ │ ├── apperror │ │ │ ├── error.go │ │ │ └── middleware.go │ │ ├── client │ │ │ ├── category_service │ │ │ │ ├── model.go │ │ │ │ └── service.go │ │ │ ├── note_service │ │ │ │ ├── model.go │ │ │ │ └── service.go │ │ │ ├── tag_service │ │ │ │ ├── model.go │ │ │ │ └── service.go │ │ │ └── user_service │ │ │ │ ├── model.go │ │ │ │ └── service.go │ │ ├── config │ │ │ └── config.go │ │ └── handlers │ │ │ ├── auth │ │ │ └── handler.go │ │ │ ├── categories │ │ │ └── handler.go │ │ │ ├── handler.go │ │ │ ├── notes │ │ │ └── handler.go │ │ │ └── tags │ │ │ └── handler.go │ ├── pkg │ │ ├── cache │ │ │ ├── cache.go │ │ │ ├── freecache │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ └── iterator.go │ │ │ └── iterator.go │ │ ├── handlers │ │ │ └── metric │ │ │ │ └── handler.go │ │ ├── jwt │ │ │ ├── helper.go │ │ │ └── middleware.go │ │ ├── logging │ │ │ └── logging.go │ │ ├── rest │ │ │ ├── api.go │ │ │ ├── client.go │ │ │ └── url.go │ │ └── shutdown │ │ │ └── shutdown.go │ ├── swagger.yml │ └── test_api │ │ ├── auth.http │ │ ├── categories.http │ │ ├── metrics.http │ │ ├── notes.http │ │ └── tags.http ├── deploy.yml └── docker-compose.yml ├── category_service ├── Dockerfile ├── README.md ├── app │ ├── README.md │ ├── api_test.http │ ├── app.py │ ├── config.py │ ├── config.yml │ ├── constants.py │ ├── dao │ │ ├── __init__.py │ │ ├── category │ │ │ ├── __init__.py │ │ │ ├── category.py │ │ │ └── neo4j.py │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dto.py │ │ │ └── model.py │ │ └── storage │ │ │ ├── __init__.py │ │ │ ├── neo4j.py │ │ │ └── storage.py │ ├── di.py │ ├── exceptions.py │ ├── helpers │ │ ├── __init__.py │ │ ├── flask.py │ │ ├── json.py │ │ └── log.py │ ├── requirements.txt │ ├── resources │ │ ├── __init__.py │ │ └── categories.py │ └── service.py ├── deploy.yml └── docker-compose.yml ├── file_service ├── Dockerfile ├── README.md ├── app │ ├── cmd │ │ └── main │ │ │ └── app.go │ ├── config.yml │ ├── go.mod │ ├── go.sum │ ├── internal │ │ ├── apperror │ │ │ ├── error.go │ │ │ └── middleware.go │ │ ├── config │ │ │ └── config.go │ │ ├── file │ │ │ ├── handler.go │ │ │ ├── model.go │ │ │ ├── service.go │ │ │ ├── storage.go │ │ │ └── storage │ │ │ │ └── minio │ │ │ │ └── storage.go │ │ └── handlers │ │ │ └── handler.go │ └── pkg │ │ ├── handlers │ │ └── metric │ │ │ └── handler.go │ │ ├── logging │ │ └── logging.go │ │ ├── minio │ │ └── client.go │ │ └── shutdown │ │ └── shutdown.go ├── deploy.yml ├── docker-compose.yml └── nginx.conf ├── note_service ├── Dockerfile ├── README.md ├── app │ ├── cmd │ │ └── main │ │ │ └── app.go │ ├── config.yml │ ├── go.mod │ ├── go.sum │ ├── internal │ │ ├── apperror │ │ │ ├── error.go │ │ │ └── middleware.go │ │ ├── config │ │ │ └── config.go │ │ ├── handlers │ │ │ └── handler.go │ │ └── note │ │ │ ├── db │ │ │ └── mongo.go │ │ │ ├── handler.go │ │ │ ├── model.go │ │ │ ├── service.go │ │ │ └── storage.go │ ├── pkg │ │ ├── handlers │ │ │ └── metric │ │ │ │ └── handler.go │ │ ├── logging │ │ │ └── logging.go │ │ ├── mongodb │ │ │ └── client.go │ │ └── shutdown │ │ │ └── shutdown.go │ └── test_api │ │ └── notes.http ├── deploy.yml ├── docker-compose.yml └── init.js ├── tag_service ├── Dockerfile ├── README.md ├── app │ ├── README.md │ ├── cmd │ │ └── main │ │ │ └── app.go │ ├── config.yml │ ├── go.mod │ ├── go.sum │ ├── internal │ │ ├── apperror │ │ │ ├── error.go │ │ │ └── middleware.go │ │ ├── config │ │ │ └── config.go │ │ ├── handlers │ │ │ └── handler.go │ │ └── tag │ │ │ ├── db │ │ │ └── mongo.go │ │ │ ├── handler.go │ │ │ ├── model.go │ │ │ ├── service.go │ │ │ └── storage.go │ ├── pkg │ │ ├── handlers │ │ │ └── metric │ │ │ │ └── handler.go │ │ ├── logging │ │ │ └── logging.go │ │ ├── mongodb │ │ │ └── client.go │ │ └── shutdown │ │ │ └── shutdown.go │ └── test_api │ │ └── tags.http ├── deploy.yml ├── docker-compose.yml └── init.js ├── user_service ├── Dockerfile ├── README.md ├── app │ ├── cmd │ │ └── main │ │ │ └── app.go │ ├── config.yml │ ├── go.mod │ ├── go.sum │ ├── internal │ │ ├── apperror │ │ │ ├── error.go │ │ │ └── middleware.go │ │ ├── config │ │ │ └── config.go │ │ ├── handlers │ │ │ └── interface.go │ │ └── user │ │ │ ├── db │ │ │ └── mongo.go │ │ │ ├── handler.go │ │ │ ├── model.go │ │ │ ├── service.go │ │ │ └── storage.go │ ├── pkg │ │ ├── logging │ │ │ └── logging.go │ │ ├── metric │ │ │ └── handler.go │ │ ├── mongodb │ │ │ └── client.go │ │ └── shutdown │ │ │ └── shutdown.go │ └── test_api │ │ └── users.http ├── deploy.yml ├── docker-compose.yml └── init.js └── web_client └── README.md /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/README.md -------------------------------------------------------------------------------- /api_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/Dockerfile -------------------------------------------------------------------------------- /api_service/README.md: -------------------------------------------------------------------------------- 1 | # api-service 2 | -------------------------------------------------------------------------------- /api_service/app/cmd/main/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/cmd/main/app.go -------------------------------------------------------------------------------- /api_service/app/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/config.yml -------------------------------------------------------------------------------- /api_service/app/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/go.mod -------------------------------------------------------------------------------- /api_service/app/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/go.sum -------------------------------------------------------------------------------- /api_service/app/internal/apperror/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/internal/apperror/error.go -------------------------------------------------------------------------------- /api_service/app/internal/apperror/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/internal/apperror/middleware.go -------------------------------------------------------------------------------- /api_service/app/internal/client/category_service/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/internal/client/category_service/model.go -------------------------------------------------------------------------------- /api_service/app/internal/client/category_service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/internal/client/category_service/service.go -------------------------------------------------------------------------------- /api_service/app/internal/client/note_service/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/internal/client/note_service/model.go -------------------------------------------------------------------------------- /api_service/app/internal/client/note_service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/internal/client/note_service/service.go -------------------------------------------------------------------------------- /api_service/app/internal/client/tag_service/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/internal/client/tag_service/model.go -------------------------------------------------------------------------------- /api_service/app/internal/client/tag_service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/internal/client/tag_service/service.go -------------------------------------------------------------------------------- /api_service/app/internal/client/user_service/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/internal/client/user_service/model.go -------------------------------------------------------------------------------- /api_service/app/internal/client/user_service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/internal/client/user_service/service.go -------------------------------------------------------------------------------- /api_service/app/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/internal/config/config.go -------------------------------------------------------------------------------- /api_service/app/internal/handlers/auth/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/internal/handlers/auth/handler.go -------------------------------------------------------------------------------- /api_service/app/internal/handlers/categories/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/internal/handlers/categories/handler.go -------------------------------------------------------------------------------- /api_service/app/internal/handlers/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/internal/handlers/handler.go -------------------------------------------------------------------------------- /api_service/app/internal/handlers/notes/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/internal/handlers/notes/handler.go -------------------------------------------------------------------------------- /api_service/app/internal/handlers/tags/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/internal/handlers/tags/handler.go -------------------------------------------------------------------------------- /api_service/app/pkg/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/pkg/cache/cache.go -------------------------------------------------------------------------------- /api_service/app/pkg/cache/freecache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/pkg/cache/freecache/cache.go -------------------------------------------------------------------------------- /api_service/app/pkg/cache/freecache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/pkg/cache/freecache/cache_test.go -------------------------------------------------------------------------------- /api_service/app/pkg/cache/freecache/iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/pkg/cache/freecache/iterator.go -------------------------------------------------------------------------------- /api_service/app/pkg/cache/iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/pkg/cache/iterator.go -------------------------------------------------------------------------------- /api_service/app/pkg/handlers/metric/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/pkg/handlers/metric/handler.go -------------------------------------------------------------------------------- /api_service/app/pkg/jwt/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/pkg/jwt/helper.go -------------------------------------------------------------------------------- /api_service/app/pkg/jwt/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/pkg/jwt/middleware.go -------------------------------------------------------------------------------- /api_service/app/pkg/logging/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/pkg/logging/logging.go -------------------------------------------------------------------------------- /api_service/app/pkg/rest/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/pkg/rest/api.go -------------------------------------------------------------------------------- /api_service/app/pkg/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/pkg/rest/client.go -------------------------------------------------------------------------------- /api_service/app/pkg/rest/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/pkg/rest/url.go -------------------------------------------------------------------------------- /api_service/app/pkg/shutdown/shutdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/pkg/shutdown/shutdown.go -------------------------------------------------------------------------------- /api_service/app/swagger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/swagger.yml -------------------------------------------------------------------------------- /api_service/app/test_api/auth.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/test_api/auth.http -------------------------------------------------------------------------------- /api_service/app/test_api/categories.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/test_api/categories.http -------------------------------------------------------------------------------- /api_service/app/test_api/metrics.http: -------------------------------------------------------------------------------- 1 | ### 2 | 3 | GET http://localhost:8080/api/heartbeat 4 | Accept: application/json -------------------------------------------------------------------------------- /api_service/app/test_api/notes.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/test_api/notes.http -------------------------------------------------------------------------------- /api_service/app/test_api/tags.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/app/test_api/tags.http -------------------------------------------------------------------------------- /api_service/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/deploy.yml -------------------------------------------------------------------------------- /api_service/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/api_service/docker-compose.yml -------------------------------------------------------------------------------- /category_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/Dockerfile -------------------------------------------------------------------------------- /category_service/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /category_service/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/README.md -------------------------------------------------------------------------------- /category_service/app/api_test.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/api_test.http -------------------------------------------------------------------------------- /category_service/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/app.py -------------------------------------------------------------------------------- /category_service/app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/config.py -------------------------------------------------------------------------------- /category_service/app/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/config.yml -------------------------------------------------------------------------------- /category_service/app/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/constants.py -------------------------------------------------------------------------------- /category_service/app/dao/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /category_service/app/dao/category/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /category_service/app/dao/category/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/dao/category/category.py -------------------------------------------------------------------------------- /category_service/app/dao/category/neo4j.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/dao/category/neo4j.py -------------------------------------------------------------------------------- /category_service/app/dao/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /category_service/app/dao/model/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/dao/model/base.py -------------------------------------------------------------------------------- /category_service/app/dao/model/dto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/dao/model/dto.py -------------------------------------------------------------------------------- /category_service/app/dao/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/dao/model/model.py -------------------------------------------------------------------------------- /category_service/app/dao/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /category_service/app/dao/storage/neo4j.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/dao/storage/neo4j.py -------------------------------------------------------------------------------- /category_service/app/dao/storage/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/dao/storage/storage.py -------------------------------------------------------------------------------- /category_service/app/di.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/di.py -------------------------------------------------------------------------------- /category_service/app/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/exceptions.py -------------------------------------------------------------------------------- /category_service/app/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /category_service/app/helpers/flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/helpers/flask.py -------------------------------------------------------------------------------- /category_service/app/helpers/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/helpers/json.py -------------------------------------------------------------------------------- /category_service/app/helpers/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/helpers/log.py -------------------------------------------------------------------------------- /category_service/app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/requirements.txt -------------------------------------------------------------------------------- /category_service/app/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/resources/__init__.py -------------------------------------------------------------------------------- /category_service/app/resources/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/resources/categories.py -------------------------------------------------------------------------------- /category_service/app/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/app/service.py -------------------------------------------------------------------------------- /category_service/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/deploy.yml -------------------------------------------------------------------------------- /category_service/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/category_service/docker-compose.yml -------------------------------------------------------------------------------- /file_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/Dockerfile -------------------------------------------------------------------------------- /file_service/README.md: -------------------------------------------------------------------------------- 1 | # category-service -------------------------------------------------------------------------------- /file_service/app/cmd/main/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/app/cmd/main/app.go -------------------------------------------------------------------------------- /file_service/app/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/app/config.yml -------------------------------------------------------------------------------- /file_service/app/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/app/go.mod -------------------------------------------------------------------------------- /file_service/app/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/app/go.sum -------------------------------------------------------------------------------- /file_service/app/internal/apperror/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/app/internal/apperror/error.go -------------------------------------------------------------------------------- /file_service/app/internal/apperror/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/app/internal/apperror/middleware.go -------------------------------------------------------------------------------- /file_service/app/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/app/internal/config/config.go -------------------------------------------------------------------------------- /file_service/app/internal/file/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/app/internal/file/handler.go -------------------------------------------------------------------------------- /file_service/app/internal/file/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/app/internal/file/model.go -------------------------------------------------------------------------------- /file_service/app/internal/file/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/app/internal/file/service.go -------------------------------------------------------------------------------- /file_service/app/internal/file/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/app/internal/file/storage.go -------------------------------------------------------------------------------- /file_service/app/internal/file/storage/minio/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/app/internal/file/storage/minio/storage.go -------------------------------------------------------------------------------- /file_service/app/internal/handlers/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/app/internal/handlers/handler.go -------------------------------------------------------------------------------- /file_service/app/pkg/handlers/metric/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/app/pkg/handlers/metric/handler.go -------------------------------------------------------------------------------- /file_service/app/pkg/logging/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/app/pkg/logging/logging.go -------------------------------------------------------------------------------- /file_service/app/pkg/minio/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/app/pkg/minio/client.go -------------------------------------------------------------------------------- /file_service/app/pkg/shutdown/shutdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/app/pkg/shutdown/shutdown.go -------------------------------------------------------------------------------- /file_service/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/deploy.yml -------------------------------------------------------------------------------- /file_service/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/docker-compose.yml -------------------------------------------------------------------------------- /file_service/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/file_service/nginx.conf -------------------------------------------------------------------------------- /note_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/Dockerfile -------------------------------------------------------------------------------- /note_service/README.md: -------------------------------------------------------------------------------- 1 | # note-service -------------------------------------------------------------------------------- /note_service/app/cmd/main/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/app/cmd/main/app.go -------------------------------------------------------------------------------- /note_service/app/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/app/config.yml -------------------------------------------------------------------------------- /note_service/app/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/app/go.mod -------------------------------------------------------------------------------- /note_service/app/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/app/go.sum -------------------------------------------------------------------------------- /note_service/app/internal/apperror/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/app/internal/apperror/error.go -------------------------------------------------------------------------------- /note_service/app/internal/apperror/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/app/internal/apperror/middleware.go -------------------------------------------------------------------------------- /note_service/app/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/app/internal/config/config.go -------------------------------------------------------------------------------- /note_service/app/internal/handlers/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/app/internal/handlers/handler.go -------------------------------------------------------------------------------- /note_service/app/internal/note/db/mongo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/app/internal/note/db/mongo.go -------------------------------------------------------------------------------- /note_service/app/internal/note/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/app/internal/note/handler.go -------------------------------------------------------------------------------- /note_service/app/internal/note/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/app/internal/note/model.go -------------------------------------------------------------------------------- /note_service/app/internal/note/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/app/internal/note/service.go -------------------------------------------------------------------------------- /note_service/app/internal/note/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/app/internal/note/storage.go -------------------------------------------------------------------------------- /note_service/app/pkg/handlers/metric/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/app/pkg/handlers/metric/handler.go -------------------------------------------------------------------------------- /note_service/app/pkg/logging/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/app/pkg/logging/logging.go -------------------------------------------------------------------------------- /note_service/app/pkg/mongodb/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/app/pkg/mongodb/client.go -------------------------------------------------------------------------------- /note_service/app/pkg/shutdown/shutdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/app/pkg/shutdown/shutdown.go -------------------------------------------------------------------------------- /note_service/app/test_api/notes.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/app/test_api/notes.http -------------------------------------------------------------------------------- /note_service/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/deploy.yml -------------------------------------------------------------------------------- /note_service/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/docker-compose.yml -------------------------------------------------------------------------------- /note_service/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/note_service/init.js -------------------------------------------------------------------------------- /tag_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/Dockerfile -------------------------------------------------------------------------------- /tag_service/README.md: -------------------------------------------------------------------------------- 1 | # tag-service -------------------------------------------------------------------------------- /tag_service/app/README.md: -------------------------------------------------------------------------------- 1 | # Tag Service -------------------------------------------------------------------------------- /tag_service/app/cmd/main/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/app/cmd/main/app.go -------------------------------------------------------------------------------- /tag_service/app/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/app/config.yml -------------------------------------------------------------------------------- /tag_service/app/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/app/go.mod -------------------------------------------------------------------------------- /tag_service/app/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/app/go.sum -------------------------------------------------------------------------------- /tag_service/app/internal/apperror/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/app/internal/apperror/error.go -------------------------------------------------------------------------------- /tag_service/app/internal/apperror/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/app/internal/apperror/middleware.go -------------------------------------------------------------------------------- /tag_service/app/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/app/internal/config/config.go -------------------------------------------------------------------------------- /tag_service/app/internal/handlers/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/app/internal/handlers/handler.go -------------------------------------------------------------------------------- /tag_service/app/internal/tag/db/mongo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/app/internal/tag/db/mongo.go -------------------------------------------------------------------------------- /tag_service/app/internal/tag/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/app/internal/tag/handler.go -------------------------------------------------------------------------------- /tag_service/app/internal/tag/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/app/internal/tag/model.go -------------------------------------------------------------------------------- /tag_service/app/internal/tag/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/app/internal/tag/service.go -------------------------------------------------------------------------------- /tag_service/app/internal/tag/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/app/internal/tag/storage.go -------------------------------------------------------------------------------- /tag_service/app/pkg/handlers/metric/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/app/pkg/handlers/metric/handler.go -------------------------------------------------------------------------------- /tag_service/app/pkg/logging/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/app/pkg/logging/logging.go -------------------------------------------------------------------------------- /tag_service/app/pkg/mongodb/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/app/pkg/mongodb/client.go -------------------------------------------------------------------------------- /tag_service/app/pkg/shutdown/shutdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/app/pkg/shutdown/shutdown.go -------------------------------------------------------------------------------- /tag_service/app/test_api/tags.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/app/test_api/tags.http -------------------------------------------------------------------------------- /tag_service/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/deploy.yml -------------------------------------------------------------------------------- /tag_service/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/docker-compose.yml -------------------------------------------------------------------------------- /tag_service/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/tag_service/init.js -------------------------------------------------------------------------------- /user_service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/Dockerfile -------------------------------------------------------------------------------- /user_service/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user_service/app/cmd/main/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/app/cmd/main/app.go -------------------------------------------------------------------------------- /user_service/app/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/app/config.yml -------------------------------------------------------------------------------- /user_service/app/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/app/go.mod -------------------------------------------------------------------------------- /user_service/app/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/app/go.sum -------------------------------------------------------------------------------- /user_service/app/internal/apperror/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/app/internal/apperror/error.go -------------------------------------------------------------------------------- /user_service/app/internal/apperror/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/app/internal/apperror/middleware.go -------------------------------------------------------------------------------- /user_service/app/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/app/internal/config/config.go -------------------------------------------------------------------------------- /user_service/app/internal/handlers/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/app/internal/handlers/interface.go -------------------------------------------------------------------------------- /user_service/app/internal/user/db/mongo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/app/internal/user/db/mongo.go -------------------------------------------------------------------------------- /user_service/app/internal/user/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/app/internal/user/handler.go -------------------------------------------------------------------------------- /user_service/app/internal/user/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/app/internal/user/model.go -------------------------------------------------------------------------------- /user_service/app/internal/user/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/app/internal/user/service.go -------------------------------------------------------------------------------- /user_service/app/internal/user/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/app/internal/user/storage.go -------------------------------------------------------------------------------- /user_service/app/pkg/logging/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/app/pkg/logging/logging.go -------------------------------------------------------------------------------- /user_service/app/pkg/metric/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/app/pkg/metric/handler.go -------------------------------------------------------------------------------- /user_service/app/pkg/mongodb/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/app/pkg/mongodb/client.go -------------------------------------------------------------------------------- /user_service/app/pkg/shutdown/shutdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/app/pkg/shutdown/shutdown.go -------------------------------------------------------------------------------- /user_service/app/test_api/users.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/app/test_api/users.http -------------------------------------------------------------------------------- /user_service/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/deploy.yml -------------------------------------------------------------------------------- /user_service/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/docker-compose.yml -------------------------------------------------------------------------------- /user_service/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/user_service/init.js -------------------------------------------------------------------------------- /web_client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theartofdevel/notes_system/HEAD/web_client/README.md --------------------------------------------------------------------------------