├── .dockerignore ├── .gitattributes ├── .github └── workflows │ ├── frontend_deploy.yml │ ├── frontend_tests.yml │ ├── games_django.yml │ └── payments_action.yml ├── .gitignore ├── LICENSE ├── README.md ├── backend ├── .gitkeep ├── __init__.py ├── channels │ ├── .env.example │ ├── .gitignore │ ├── .pre-commit-config.yaml │ ├── README.md │ ├── broker │ │ ├── Dockerfile │ │ ├── config │ │ │ ├── __init__.py │ │ │ ├── database.py │ │ │ ├── rabbitmq.py │ │ │ ├── redis.py │ │ │ └── smtp.py │ │ ├── consumers │ │ │ ├── __init__.py │ │ │ ├── abstract.py │ │ │ ├── email │ │ │ │ ├── __init__.py │ │ │ │ ├── consumer.py │ │ │ │ └── models.py │ │ │ └── notifications │ │ │ │ ├── __init__.py │ │ │ │ ├── consumer.py │ │ │ │ └── models.py │ │ ├── core │ │ │ └── utills.py │ │ ├── main.py │ │ ├── requirements.txt │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── database.py │ │ │ ├── rabbitmq.py │ │ │ └── redis.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── database.py │ │ │ ├── main.py │ │ │ └── redis.py │ ├── chat │ │ ├── Dockerfile │ │ ├── __init__.py │ │ ├── config │ │ │ ├── __init__.py │ │ │ ├── database.py │ │ │ └── redis.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── database.py │ │ │ ├── redis.py │ │ │ ├── router.py │ │ │ └── websocket │ │ │ │ ├── endpoints.py │ │ │ │ ├── handlers │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── producer.py │ │ │ │ └── reciever.py │ │ │ │ ├── request.py │ │ │ │ └── router │ │ │ │ ├── __init__.py │ │ │ │ └── routing.py │ │ ├── main.py │ │ ├── requirements.txt │ │ ├── src │ │ │ ├── __init__.py │ │ │ ├── messages │ │ │ │ ├── __init__.py │ │ │ │ ├── endpoints.py │ │ │ │ ├── endpoints │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── http.py │ │ │ │ │ └── websocket.py │ │ │ │ └── models.py │ │ │ ├── middlewares.py │ │ │ ├── notifications │ │ │ │ ├── __init__.py │ │ │ │ ├── endpoints │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── http.py │ │ │ │ │ └── websocket.py │ │ │ │ ├── models.py │ │ │ │ ├── repository.py │ │ │ │ └── schema.py │ │ │ ├── rooms │ │ │ │ ├── __init__.py │ │ │ │ ├── endpoints.py │ │ │ │ └── models.py │ │ │ ├── router.py │ │ │ └── users │ │ │ │ ├── __init__.py │ │ │ │ ├── endpoints.py │ │ │ │ └── models.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ └── models.py │ ├── docker-compose.yml │ └── pyproject.toml ├── databus │ ├── docker-compose.yml │ └── init │ │ ├── definitions.json │ │ └── rabbitmq.conf ├── games │ ├── .env.dev │ ├── .flake8 │ ├── .gitkeep │ ├── .pre-commit-config.yaml │ ├── Dockerfile │ ├── README.md │ ├── base │ │ ├── apps.py │ │ ├── choices.py │ │ ├── classes.py │ │ ├── model_fields.py │ │ ├── paginations.py │ │ ├── serializers.py │ │ └── viewsets.py │ ├── community │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_alter_media_type_alter_reaction_like_type_and_more.py │ │ │ ├── 0003_comment_created_at.py │ │ │ ├── 0004_historicalsocial_historicalreview_historicalreaction_and_more.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── config │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ ├── wsgi.py │ │ └── yasg.py │ ├── core │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── filters.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_alter_gamedlclink_dlc_alter_gamedlclink_game_and_more.py │ │ │ ├── 0003_historicalsystemrequirement_historicalproduct.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── other.py │ │ │ └── product.py │ │ ├── permissions.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── docker-compose.yml │ ├── finance │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_historicalschedulerprice_historicalsale_and_more.py │ │ │ ├── 0003_cart_cartoffer.py │ │ │ ├── 0004_library_libraryproduct_and_more.py │ │ │ └── __init__.py │ │ ├── mixins.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── cart.py │ │ │ ├── library.py │ │ │ └── offer.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── urls.py │ │ ├── validators.py │ │ └── views.py │ ├── fixtures │ │ ├── genre.json │ │ ├── genre_product.json │ │ ├── language.json │ │ ├── offer.json │ │ ├── price.json │ │ ├── product.json │ │ ├── product_language.json │ │ ├── product_offer.json │ │ ├── sub_genre.json │ │ ├── subgenre_product.json │ │ └── system_requiremetns.json │ ├── manage.py │ ├── pyproject.toml │ ├── reference │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_genreproduct_remove_genre_unique_genre_and_more.py │ │ │ ├── 0003_historicalsubgenre_historicalproductlanguage_and_more.py │ │ │ ├── 0004_genreproduct_unique_genre_product_and_more.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── genres.py │ │ │ └── langs.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── requirements.txt │ └── utils │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── management │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── fill_data.py │ │ ├── migrations │ │ └── __init__.py │ │ ├── models.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── payments │ ├── .env.example │ ├── .gitkeep │ ├── .pre-commit-config.yaml │ ├── Dockerfiles │ │ ├── ngnix.Dockerfile │ │ ├── node.Dockerfile │ │ ├── payments.Dockerfile │ │ └── scripts │ │ │ ├── entrypoint.sh │ │ │ └── node.sh │ ├── README.md │ ├── apps │ │ ├── __init__.py │ │ ├── payment_accounts │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ ├── services │ │ │ │ ├── create_payment.py │ │ │ │ └── payment_acceptance.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── transactions │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── exceptions.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ └── urls.py │ ├── config │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── celery.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── docker-compose.yml │ ├── flake8-requirements.txt │ ├── manage.py │ ├── nginx.conf │ └── requirements.txt └── users │ ├── .env.example │ ├── .flake8 │ ├── .gitkeep │ ├── README.md │ ├── backend │ ├── admins │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── management │ │ │ └── commands │ │ │ │ └── initadmin.py │ │ ├── migrations │ │ │ ├── 0001_auto.py │ │ │ └── __init__.py │ │ └── models.py │ ├── common │ │ ├── apps.py │ │ └── models.py │ ├── config │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── settings │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ ├── base.py │ │ │ ├── database.py │ │ │ ├── drf.py │ │ │ └── logging.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── customers │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ └── models.py │ ├── developers │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ └── models.py │ └── manage.py │ ├── docker │ ├── docker-compose.local.yml │ ├── docker-compose.yml │ └── python │ │ ├── Dockerfile │ │ └── start-web.sh │ ├── poetry.lock │ ├── pyproject.toml │ └── requirements.txt └── frontend ├── .dockerignore ├── .env.example ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc ├── .prettierignore ├── .prettierrc ├── CONTRIBUTING.md ├── Dockerfile.dev ├── Dockerfile.prod ├── Makefile ├── README.md ├── app ├── (auth) │ ├── Form.module.css │ ├── Form.tsx │ ├── SocialBtn.tsx │ ├── forgot │ │ └── page.tsx │ ├── signin │ │ ├── page.module.css │ │ └── page.tsx │ └── signup │ │ └── page.tsx ├── (main) │ ├── about │ │ ├── page.module.css │ │ └── page.tsx │ ├── catalog │ │ ├── error.tsx │ │ ├── loading.tsx │ │ ├── page.module.css │ │ └── page.tsx │ ├── contacts │ │ ├── page.module.css │ │ └── page.tsx │ ├── details │ │ ├── [id] │ │ │ ├── page.module.css │ │ │ └── page.tsx │ │ ├── error.tsx │ │ ├── loading.module.css │ │ └── loading.tsx │ ├── error.tsx │ ├── layout.tsx │ ├── loading.module.css │ ├── loading.tsx │ ├── news │ │ ├── [id] │ │ │ ├── error.tsx │ │ │ ├── page.module.css │ │ │ └── page.tsx │ │ ├── error.tsx │ │ ├── loading.tsx │ │ ├── page.module.css │ │ └── page.tsx │ ├── page.module.css │ ├── page.tsx │ ├── profile │ │ ├── checkout │ │ │ ├── page.module.css │ │ │ └── page.tsx │ │ ├── error.tsx │ │ ├── favorites │ │ │ ├── page.module.css │ │ │ └── page.tsx │ │ ├── layout.module.css │ │ ├── layout.tsx │ │ ├── purchases │ │ │ └── page.tsx │ │ └── settings │ │ │ ├── @password │ │ │ └── page.tsx │ │ │ ├── @profile │ │ │ ├── ProfileForm.tsx │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── page.module.css │ │ │ └── page.tsx │ └── user │ │ └── [id] │ │ ├── page.module.css │ │ └── page.tsx ├── global.css ├── layout.tsx └── mocks │ ├── auth │ ├── access │ │ └── route.ts │ └── refresh │ │ └── route.ts │ ├── contacts │ └── route.ts │ ├── games │ ├── best │ │ └── route.ts │ ├── details │ │ └── [id] │ │ │ └── route.ts │ ├── filters │ │ ├── genres │ │ │ └── route.ts │ │ ├── platforms │ │ │ └── route.ts │ │ ├── prices │ │ │ └── route.ts │ │ └── sorts │ │ │ └── route.ts │ ├── latest │ │ └── route.ts │ ├── list │ │ └── route.ts │ ├── other │ │ └── route.ts │ ├── random │ │ └── route.ts │ ├── route.ts │ └── search │ │ └── route.ts │ ├── news │ ├── [id] │ │ └── route.ts │ ├── comments │ │ └── route.ts │ └── route.ts │ └── profile │ ├── [id] │ └── route.ts │ ├── checkout │ ├── coupon │ │ └── route.ts │ └── route.ts │ ├── favorites │ └── route.ts │ ├── purchases │ └── route.ts │ └── settings │ ├── password │ └── route.ts │ └── route.ts ├── assets ├── fonts │ ├── Montserrat.ttf │ └── OpenSans.ttf └── img │ └── logo.png ├── components ├── Alert │ ├── Alert.module.css │ ├── Alert.tsx │ └── index.ts ├── Breadcrumbs │ ├── Breadcrumbs.module.css │ ├── Breadcrumbs.test.tsx │ ├── Breadcrumbs.tsx │ └── index.ts ├── Carousel │ ├── Carousel.module.css │ ├── Carousel.tsx │ ├── CarouselArrow.tsx │ └── index.ts ├── CarouselSection │ ├── CarouselSection.tsx │ └── index.ts ├── Container │ ├── Container.module.css │ ├── Container.tsx │ └── index.ts ├── Error │ ├── Error.module.css │ ├── Error.tsx │ └── index.ts ├── Footer │ ├── Footer.module.css │ ├── Footer.tsx │ └── index.ts ├── Form │ ├── CheckBox │ │ ├── CheckBox.module.css │ │ ├── CheckBox.tsx │ │ └── index.ts │ ├── Form.module.css │ ├── Form.tsx │ ├── Group │ │ ├── Group.module.css │ │ ├── Group.tsx │ │ └── index.ts │ ├── Input │ │ ├── Input.module.css │ │ ├── Input.tsx │ │ └── index.ts │ ├── Label │ │ ├── Label.module.css │ │ ├── Label.tsx │ │ └── index.ts │ └── index.ts ├── Header │ ├── Header.module.css │ ├── Header.tsx │ └── index.ts ├── NotFound │ ├── NotFound.module.css │ ├── NotFound.tsx │ └── index.ts ├── Pagination │ ├── Pagination.module.css │ ├── Pagination.tsx │ └── index.ts ├── Platform │ ├── Platform.module.css │ ├── Platform.test.tsx │ ├── Platform.tsx │ └── index.ts ├── Search │ ├── Search.module.css │ ├── Search.test.tsx │ ├── Search.tsx │ ├── SearchInput.test.tsx │ ├── SearchInput.tsx │ └── index.ts ├── Section │ ├── Section.module.css │ ├── Section.tsx │ └── index.ts ├── Select │ ├── Select.module.css │ ├── Select.tsx │ └── index.ts ├── Skeleton │ ├── SkeletonCard │ │ ├── SkeletonCard.module.css │ │ ├── SkeletonCard.tsx │ │ └── index.ts │ ├── SkeletonCheckBox │ │ ├── SkeletonCheckBox.module.css │ │ ├── SkeletonCheckBox.tsx │ │ └── index.ts │ ├── SkeletonGameBigCard │ │ ├── SkeletonGameBigCard.module.css │ │ ├── SkeletonGameBigCard.tsx │ │ └── index.ts │ ├── SkeletonInput │ │ ├── SkeletonInput.module.css │ │ ├── SkeletonInput.tsx │ │ └── index.ts │ ├── SkeletonListCheckBoxes │ │ ├── SkeletonListCheckBoxes.module.css │ │ ├── SkeletonListCheckBoxes.tsx │ │ └── index.ts │ ├── SkeletonSelect │ │ ├── SkeletonSelect.module.css │ │ ├── SkeletonSelect.tsx │ │ └── index.ts │ ├── SkeletonTitle │ │ ├── SkeletonTitle.module.css │ │ ├── SkeletonTitle.tsx │ │ └── index.ts │ └── index.ts ├── Slider │ ├── Range │ │ ├── Range.tsx │ │ └── index.ts │ └── index.ts └── Table │ ├── Table.module.css │ ├── Table.tsx │ └── index.ts ├── configs └── index.ts ├── cypress.config.ts ├── cypress ├── e2e │ └── app.cy.ts └── support │ ├── commands.ts │ ├── component-index.html │ ├── component.ts │ └── e2e.ts ├── docker-compose.yml ├── features ├── auth │ ├── index.ts │ ├── mocks │ │ ├── index.ts │ │ └── tokens.ts │ ├── types │ │ ├── authPayload.ts │ │ ├── cookie.ts │ │ └── index.ts │ └── utils │ │ ├── checkAuthClient.ts │ │ ├── checkAuthServer.ts │ │ └── index.ts ├── games │ ├── components │ │ ├── FilterGames │ │ │ ├── FilterGames.module.css │ │ │ ├── FilterGames.tsx │ │ │ ├── GroupItem.tsx │ │ │ └── index.ts │ │ ├── GameCard │ │ │ ├── GameCard.module.css │ │ │ ├── GameCard.test.tsx │ │ │ ├── GameCard.tsx │ │ │ ├── GameCardBig.test.tsx │ │ │ ├── GameCardBig.tsx │ │ │ └── index.ts │ │ ├── Languages │ │ │ ├── Language.module.css │ │ │ ├── Language.tsx │ │ │ ├── Languages.tsx │ │ │ └── index.ts │ │ ├── ListGames │ │ │ ├── ListGame.module.css │ │ │ ├── ListGame.tsx │ │ │ ├── ListGames.module.css │ │ │ ├── ListGames.tsx │ │ │ └── index.ts │ │ ├── Requirements │ │ │ ├── Requirement.module.css │ │ │ ├── Requirement.tsx │ │ │ ├── Requirements.module.css │ │ │ ├── Requirements.tsx │ │ │ └── index.ts │ │ └── index.ts │ ├── mocks │ │ ├── filter.ts │ │ ├── games.ts │ │ └── index.ts │ ├── models │ │ ├── IProduct.ts │ │ └── index.ts │ └── types │ │ ├── filter.ts │ │ ├── games.ts │ │ └── index.ts ├── news │ ├── components │ │ ├── ArticleContent │ │ │ ├── ArticleContent.module.css │ │ │ ├── ArticleContent.tsx │ │ │ └── index.ts │ │ ├── Comments │ │ │ ├── Comments.module.css │ │ │ ├── Comments.tsx │ │ │ ├── SingleComment.tsx │ │ │ └── index.ts │ │ ├── LatestNews │ │ │ ├── LatestNews.module.css │ │ │ ├── LatestNews.tsx │ │ │ └── index.ts │ │ ├── NewsItem │ │ │ ├── NewsItem.module.css │ │ │ ├── NewsItem.tsx │ │ │ └── index.ts │ │ ├── RelatedNews │ │ │ ├── RelatedNews.tsx │ │ │ └── index.ts │ │ ├── SocialLink │ │ │ ├── SocialLink.module.css │ │ │ ├── SocialLink.tsx │ │ │ └── index.ts │ │ ├── Subscribe │ │ │ ├── Subscribe.module.css │ │ │ ├── Subscribe.tsx │ │ │ └── index.ts │ │ └── index.ts │ ├── mocks │ │ └── index.ts │ ├── models │ │ ├── INews.ts │ │ ├── INewsCategory.ts │ │ └── index.ts │ └── types │ │ ├── comments.ts │ │ ├── index.ts │ │ └── news.ts └── profile │ ├── components │ ├── CheckAge │ │ ├── CheckAge.module.css │ │ ├── CheckAge.tsx │ │ └── index.ts │ ├── CheckoutCouponForm │ │ ├── CheckoutCouponForm.module.css │ │ ├── CheckoutCouponForm.tsx │ │ └── index.ts │ ├── CheckoutForm │ │ ├── CheckoutForm.module.css │ │ ├── CheckoutForm.tsx │ │ └── index.ts │ ├── CheckoutTable │ │ ├── CheckoutTable.module.css │ │ ├── CheckoutTable.tsx │ │ └── index.ts │ ├── PurchaseTable │ │ ├── PurchaseTable.module.css │ │ ├── PurchaseTable.tsx │ │ └── index.ts │ ├── UserItem │ │ ├── UserItem.module.css │ │ ├── UserItem.tsx │ │ └── index.ts │ └── index.ts │ ├── mocks │ └── index.ts │ └── types │ └── index.ts ├── hooks ├── index.ts └── useDebounce.ts ├── jest.config.js ├── lib ├── errorHandler.ts ├── fetchServerSide.ts └── types.ts ├── middleware.ts ├── next-app.d.ts ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── partners │ ├── about.jpg │ ├── activeden.png │ ├── audiojungle.png │ ├── codecanyon.png │ ├── docean.png │ ├── photodune.png │ └── themeforest.png └── svg │ ├── arrow.svg │ ├── arrow2.svg │ ├── arrow3.svg │ └── checkmark.svg ├── tailwind.config.js ├── tsconfig.json └── utils ├── .gitkeep ├── randomItem.ts └── randomNumber.ts /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/frontend_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/.github/workflows/frontend_deploy.yml -------------------------------------------------------------------------------- /.github/workflows/frontend_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/.github/workflows/frontend_tests.yml -------------------------------------------------------------------------------- /.github/workflows/games_django.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/.github/workflows/games_django.yml -------------------------------------------------------------------------------- /.github/workflows/payments_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/.github/workflows/payments_action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/README.md -------------------------------------------------------------------------------- /backend/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/.env.example -------------------------------------------------------------------------------- /backend/channels/.gitignore: -------------------------------------------------------------------------------- 1 | **/venv/ 2 | .env.dev 3 | .ruff_cache/ 4 | -------------------------------------------------------------------------------- /backend/channels/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/.pre-commit-config.yaml -------------------------------------------------------------------------------- /backend/channels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/README.md -------------------------------------------------------------------------------- /backend/channels/broker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/broker/Dockerfile -------------------------------------------------------------------------------- /backend/channels/broker/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/broker/config/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/broker/config/database.py -------------------------------------------------------------------------------- /backend/channels/broker/config/rabbitmq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/broker/config/rabbitmq.py -------------------------------------------------------------------------------- /backend/channels/broker/config/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/broker/config/redis.py -------------------------------------------------------------------------------- /backend/channels/broker/config/smtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/broker/config/smtp.py -------------------------------------------------------------------------------- /backend/channels/broker/consumers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/broker/consumers/abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/broker/consumers/abstract.py -------------------------------------------------------------------------------- /backend/channels/broker/consumers/email/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/broker/consumers/email/consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/broker/consumers/email/consumer.py -------------------------------------------------------------------------------- /backend/channels/broker/consumers/email/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/broker/consumers/email/models.py -------------------------------------------------------------------------------- /backend/channels/broker/consumers/notifications/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/broker/consumers/notifications/consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/broker/consumers/notifications/consumer.py -------------------------------------------------------------------------------- /backend/channels/broker/consumers/notifications/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/broker/consumers/notifications/models.py -------------------------------------------------------------------------------- /backend/channels/broker/core/utills.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/broker/core/utills.py -------------------------------------------------------------------------------- /backend/channels/broker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/broker/main.py -------------------------------------------------------------------------------- /backend/channels/broker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/broker/requirements.txt -------------------------------------------------------------------------------- /backend/channels/broker/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/broker/services/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/broker/services/database.py -------------------------------------------------------------------------------- /backend/channels/broker/services/rabbitmq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/broker/services/rabbitmq.py -------------------------------------------------------------------------------- /backend/channels/broker/services/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/broker/services/redis.py -------------------------------------------------------------------------------- /backend/channels/broker/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/broker/tests/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/broker/tests/database.py -------------------------------------------------------------------------------- /backend/channels/broker/tests/main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/broker/tests/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/broker/tests/redis.py -------------------------------------------------------------------------------- /backend/channels/chat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/Dockerfile -------------------------------------------------------------------------------- /backend/channels/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/chat/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/chat/config/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/config/database.py -------------------------------------------------------------------------------- /backend/channels/chat/config/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/config/redis.py -------------------------------------------------------------------------------- /backend/channels/chat/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/chat/core/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/core/database.py -------------------------------------------------------------------------------- /backend/channels/chat/core/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/core/redis.py -------------------------------------------------------------------------------- /backend/channels/chat/core/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/core/router.py -------------------------------------------------------------------------------- /backend/channels/chat/core/websocket/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/core/websocket/endpoints.py -------------------------------------------------------------------------------- /backend/channels/chat/core/websocket/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/chat/core/websocket/handlers/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/core/websocket/handlers/connection.py -------------------------------------------------------------------------------- /backend/channels/chat/core/websocket/handlers/producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/core/websocket/handlers/producer.py -------------------------------------------------------------------------------- /backend/channels/chat/core/websocket/handlers/reciever.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/chat/core/websocket/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/core/websocket/request.py -------------------------------------------------------------------------------- /backend/channels/chat/core/websocket/router/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/chat/core/websocket/router/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/core/websocket/router/routing.py -------------------------------------------------------------------------------- /backend/channels/chat/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/main.py -------------------------------------------------------------------------------- /backend/channels/chat/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/requirements.txt -------------------------------------------------------------------------------- /backend/channels/chat/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/chat/src/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/chat/src/messages/endpoints.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/chat/src/messages/endpoints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/chat/src/messages/endpoints/http.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /backend/channels/chat/src/messages/endpoints/websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/src/messages/endpoints/websocket.py -------------------------------------------------------------------------------- /backend/channels/chat/src/messages/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/src/messages/models.py -------------------------------------------------------------------------------- /backend/channels/chat/src/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/src/middlewares.py -------------------------------------------------------------------------------- /backend/channels/chat/src/notifications/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/chat/src/notifications/endpoints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/chat/src/notifications/endpoints/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/src/notifications/endpoints/http.py -------------------------------------------------------------------------------- /backend/channels/chat/src/notifications/endpoints/websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/src/notifications/endpoints/websocket.py -------------------------------------------------------------------------------- /backend/channels/chat/src/notifications/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/src/notifications/models.py -------------------------------------------------------------------------------- /backend/channels/chat/src/notifications/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/src/notifications/repository.py -------------------------------------------------------------------------------- /backend/channels/chat/src/notifications/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/src/notifications/schema.py -------------------------------------------------------------------------------- /backend/channels/chat/src/rooms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/chat/src/rooms/endpoints.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/chat/src/rooms/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/src/rooms/models.py -------------------------------------------------------------------------------- /backend/channels/chat/src/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/src/router.py -------------------------------------------------------------------------------- /backend/channels/chat/src/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/chat/src/users/endpoints.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/chat/src/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/src/users/models.py -------------------------------------------------------------------------------- /backend/channels/chat/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/channels/chat/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/chat/utils/models.py -------------------------------------------------------------------------------- /backend/channels/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/docker-compose.yml -------------------------------------------------------------------------------- /backend/channels/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/channels/pyproject.toml -------------------------------------------------------------------------------- /backend/databus/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/databus/docker-compose.yml -------------------------------------------------------------------------------- /backend/databus/init/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/databus/init/definitions.json -------------------------------------------------------------------------------- /backend/databus/init/rabbitmq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/databus/init/rabbitmq.conf -------------------------------------------------------------------------------- /backend/games/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/.env.dev -------------------------------------------------------------------------------- /backend/games/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/.flake8 -------------------------------------------------------------------------------- /backend/games/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/.pre-commit-config.yaml -------------------------------------------------------------------------------- /backend/games/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/Dockerfile -------------------------------------------------------------------------------- /backend/games/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/README.md -------------------------------------------------------------------------------- /backend/games/base/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/base/apps.py -------------------------------------------------------------------------------- /backend/games/base/choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/base/choices.py -------------------------------------------------------------------------------- /backend/games/base/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/base/classes.py -------------------------------------------------------------------------------- /backend/games/base/model_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/base/model_fields.py -------------------------------------------------------------------------------- /backend/games/base/paginations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/base/paginations.py -------------------------------------------------------------------------------- /backend/games/base/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/base/serializers.py -------------------------------------------------------------------------------- /backend/games/base/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/base/viewsets.py -------------------------------------------------------------------------------- /backend/games/community/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/community/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/community/apps.py -------------------------------------------------------------------------------- /backend/games/community/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/community/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/community/migrations/0002_alter_media_type_alter_reaction_like_type_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/community/migrations/0002_alter_media_type_alter_reaction_like_type_and_more.py -------------------------------------------------------------------------------- /backend/games/community/migrations/0003_comment_created_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/community/migrations/0003_comment_created_at.py -------------------------------------------------------------------------------- /backend/games/community/migrations/0004_historicalsocial_historicalreview_historicalreaction_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/community/migrations/0004_historicalsocial_historicalreview_historicalreaction_and_more.py -------------------------------------------------------------------------------- /backend/games/community/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/community/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/community/models.py -------------------------------------------------------------------------------- /backend/games/community/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/community/serializers.py -------------------------------------------------------------------------------- /backend/games/community/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/community/tests.py -------------------------------------------------------------------------------- /backend/games/community/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/community/urls.py -------------------------------------------------------------------------------- /backend/games/community/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/community/views.py -------------------------------------------------------------------------------- /backend/games/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/config/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/config/asgi.py -------------------------------------------------------------------------------- /backend/games/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/config/settings.py -------------------------------------------------------------------------------- /backend/games/config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/config/urls.py -------------------------------------------------------------------------------- /backend/games/config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/config/wsgi.py -------------------------------------------------------------------------------- /backend/games/config/yasg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/config/yasg.py -------------------------------------------------------------------------------- /backend/games/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/core/apps.py -------------------------------------------------------------------------------- /backend/games/core/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/core/filters.py -------------------------------------------------------------------------------- /backend/games/core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/core/migrations/0002_alter_gamedlclink_dlc_alter_gamedlclink_game_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/core/migrations/0002_alter_gamedlclink_dlc_alter_gamedlclink_game_and_more.py -------------------------------------------------------------------------------- /backend/games/core/migrations/0003_historicalsystemrequirement_historicalproduct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/core/migrations/0003_historicalsystemrequirement_historicalproduct.py -------------------------------------------------------------------------------- /backend/games/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/core/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/core/models/__init__.py -------------------------------------------------------------------------------- /backend/games/core/models/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/core/models/other.py -------------------------------------------------------------------------------- /backend/games/core/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/core/models/product.py -------------------------------------------------------------------------------- /backend/games/core/permissions.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/core/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/core/serializers.py -------------------------------------------------------------------------------- /backend/games/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/core/tests.py -------------------------------------------------------------------------------- /backend/games/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/core/urls.py -------------------------------------------------------------------------------- /backend/games/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/core/views.py -------------------------------------------------------------------------------- /backend/games/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/docker-compose.yml -------------------------------------------------------------------------------- /backend/games/finance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/finance/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/finance/apps.py -------------------------------------------------------------------------------- /backend/games/finance/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/finance/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/finance/migrations/0002_historicalschedulerprice_historicalsale_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/finance/migrations/0002_historicalschedulerprice_historicalsale_and_more.py -------------------------------------------------------------------------------- /backend/games/finance/migrations/0003_cart_cartoffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/finance/migrations/0003_cart_cartoffer.py -------------------------------------------------------------------------------- /backend/games/finance/migrations/0004_library_libraryproduct_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/finance/migrations/0004_library_libraryproduct_and_more.py -------------------------------------------------------------------------------- /backend/games/finance/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/finance/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/finance/mixins.py -------------------------------------------------------------------------------- /backend/games/finance/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/finance/models/__init__.py -------------------------------------------------------------------------------- /backend/games/finance/models/cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/finance/models/cart.py -------------------------------------------------------------------------------- /backend/games/finance/models/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/finance/models/library.py -------------------------------------------------------------------------------- /backend/games/finance/models/offer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/finance/models/offer.py -------------------------------------------------------------------------------- /backend/games/finance/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/finance/serializers.py -------------------------------------------------------------------------------- /backend/games/finance/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/finance/tests.py -------------------------------------------------------------------------------- /backend/games/finance/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/finance/urls.py -------------------------------------------------------------------------------- /backend/games/finance/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/finance/validators.py -------------------------------------------------------------------------------- /backend/games/finance/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/finance/views.py -------------------------------------------------------------------------------- /backend/games/fixtures/genre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/fixtures/genre.json -------------------------------------------------------------------------------- /backend/games/fixtures/genre_product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/fixtures/genre_product.json -------------------------------------------------------------------------------- /backend/games/fixtures/language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/fixtures/language.json -------------------------------------------------------------------------------- /backend/games/fixtures/offer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/fixtures/offer.json -------------------------------------------------------------------------------- /backend/games/fixtures/price.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/fixtures/price.json -------------------------------------------------------------------------------- /backend/games/fixtures/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/fixtures/product.json -------------------------------------------------------------------------------- /backend/games/fixtures/product_language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/fixtures/product_language.json -------------------------------------------------------------------------------- /backend/games/fixtures/product_offer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/fixtures/product_offer.json -------------------------------------------------------------------------------- /backend/games/fixtures/sub_genre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/fixtures/sub_genre.json -------------------------------------------------------------------------------- /backend/games/fixtures/subgenre_product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/fixtures/subgenre_product.json -------------------------------------------------------------------------------- /backend/games/fixtures/system_requiremetns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/fixtures/system_requiremetns.json -------------------------------------------------------------------------------- /backend/games/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/manage.py -------------------------------------------------------------------------------- /backend/games/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/pyproject.toml -------------------------------------------------------------------------------- /backend/games/reference/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/reference/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/reference/apps.py -------------------------------------------------------------------------------- /backend/games/reference/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/reference/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/reference/migrations/0002_genreproduct_remove_genre_unique_genre_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/reference/migrations/0002_genreproduct_remove_genre_unique_genre_and_more.py -------------------------------------------------------------------------------- /backend/games/reference/migrations/0003_historicalsubgenre_historicalproductlanguage_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/reference/migrations/0003_historicalsubgenre_historicalproductlanguage_and_more.py -------------------------------------------------------------------------------- /backend/games/reference/migrations/0004_genreproduct_unique_genre_product_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/reference/migrations/0004_genreproduct_unique_genre_product_and_more.py -------------------------------------------------------------------------------- /backend/games/reference/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/reference/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/reference/models/__init__.py -------------------------------------------------------------------------------- /backend/games/reference/models/genres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/reference/models/genres.py -------------------------------------------------------------------------------- /backend/games/reference/models/langs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/reference/models/langs.py -------------------------------------------------------------------------------- /backend/games/reference/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/reference/serializers.py -------------------------------------------------------------------------------- /backend/games/reference/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/reference/tests.py -------------------------------------------------------------------------------- /backend/games/reference/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/reference/urls.py -------------------------------------------------------------------------------- /backend/games/reference/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/reference/views.py -------------------------------------------------------------------------------- /backend/games/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/requirements.txt -------------------------------------------------------------------------------- /backend/games/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/utils/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/utils/apps.py -------------------------------------------------------------------------------- /backend/games/utils/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/utils/management/commands/fill_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/utils/management/commands/fill_data.py -------------------------------------------------------------------------------- /backend/games/utils/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/utils/models.py -------------------------------------------------------------------------------- /backend/games/utils/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/utils/serializers.py -------------------------------------------------------------------------------- /backend/games/utils/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/utils/tests.py -------------------------------------------------------------------------------- /backend/games/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/utils/urls.py -------------------------------------------------------------------------------- /backend/games/utils/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/games/utils/views.py -------------------------------------------------------------------------------- /backend/payments/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/.env.example -------------------------------------------------------------------------------- /backend/payments/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/payments/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/.pre-commit-config.yaml -------------------------------------------------------------------------------- /backend/payments/Dockerfiles/ngnix.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/Dockerfiles/ngnix.Dockerfile -------------------------------------------------------------------------------- /backend/payments/Dockerfiles/node.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/Dockerfiles/node.Dockerfile -------------------------------------------------------------------------------- /backend/payments/Dockerfiles/payments.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/Dockerfiles/payments.Dockerfile -------------------------------------------------------------------------------- /backend/payments/Dockerfiles/scripts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/Dockerfiles/scripts/entrypoint.sh -------------------------------------------------------------------------------- /backend/payments/Dockerfiles/scripts/node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/Dockerfiles/scripts/node.sh -------------------------------------------------------------------------------- /backend/payments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/README.md -------------------------------------------------------------------------------- /backend/payments/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/payments/apps/payment_accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/payments/apps/payment_accounts/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/payments/apps/payment_accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/apps/payment_accounts/apps.py -------------------------------------------------------------------------------- /backend/payments/apps/payment_accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/apps/payment_accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/payments/apps/payment_accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/payments/apps/payment_accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/apps/payment_accounts/models.py -------------------------------------------------------------------------------- /backend/payments/apps/payment_accounts/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/apps/payment_accounts/serializers.py -------------------------------------------------------------------------------- /backend/payments/apps/payment_accounts/services/create_payment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/apps/payment_accounts/services/create_payment.py -------------------------------------------------------------------------------- /backend/payments/apps/payment_accounts/services/payment_acceptance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/apps/payment_accounts/services/payment_acceptance.py -------------------------------------------------------------------------------- /backend/payments/apps/payment_accounts/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/payments/apps/payment_accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/apps/payment_accounts/urls.py -------------------------------------------------------------------------------- /backend/payments/apps/payment_accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/apps/payment_accounts/views.py -------------------------------------------------------------------------------- /backend/payments/apps/transactions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/payments/apps/transactions/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/payments/apps/transactions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/apps/transactions/apps.py -------------------------------------------------------------------------------- /backend/payments/apps/transactions/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/apps/transactions/exceptions.py -------------------------------------------------------------------------------- /backend/payments/apps/transactions/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/apps/transactions/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/payments/apps/transactions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/payments/apps/transactions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/apps/transactions/models.py -------------------------------------------------------------------------------- /backend/payments/apps/transactions/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/payments/apps/transactions/urls.py: -------------------------------------------------------------------------------- 1 | urlpatterns = [ 2 | 3 | ] 4 | -------------------------------------------------------------------------------- /backend/payments/apps/transactions/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/payments/apps/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/apps/urls.py -------------------------------------------------------------------------------- /backend/payments/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/config/__init__.py -------------------------------------------------------------------------------- /backend/payments/config/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/config/asgi.py -------------------------------------------------------------------------------- /backend/payments/config/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/config/celery.py -------------------------------------------------------------------------------- /backend/payments/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/config/settings.py -------------------------------------------------------------------------------- /backend/payments/config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/config/urls.py -------------------------------------------------------------------------------- /backend/payments/config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/config/wsgi.py -------------------------------------------------------------------------------- /backend/payments/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/docker-compose.yml -------------------------------------------------------------------------------- /backend/payments/flake8-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/flake8-requirements.txt -------------------------------------------------------------------------------- /backend/payments/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/manage.py -------------------------------------------------------------------------------- /backend/payments/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/nginx.conf -------------------------------------------------------------------------------- /backend/payments/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/payments/requirements.txt -------------------------------------------------------------------------------- /backend/users/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/.env.example -------------------------------------------------------------------------------- /backend/users/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/.flake8 -------------------------------------------------------------------------------- /backend/users/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/users/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/README.md -------------------------------------------------------------------------------- /backend/users/backend/admins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/users/backend/admins/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/admins/apps.py -------------------------------------------------------------------------------- /backend/users/backend/admins/management/commands/initadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/admins/management/commands/initadmin.py -------------------------------------------------------------------------------- /backend/users/backend/admins/migrations/0001_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/admins/migrations/0001_auto.py -------------------------------------------------------------------------------- /backend/users/backend/admins/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/users/backend/admins/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/admins/models.py -------------------------------------------------------------------------------- /backend/users/backend/common/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/common/apps.py -------------------------------------------------------------------------------- /backend/users/backend/common/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/common/models.py -------------------------------------------------------------------------------- /backend/users/backend/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/users/backend/config/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/config/asgi.py -------------------------------------------------------------------------------- /backend/users/backend/config/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/config/settings/__init__.py -------------------------------------------------------------------------------- /backend/users/backend/config/settings/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/config/settings/auth.py -------------------------------------------------------------------------------- /backend/users/backend/config/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/config/settings/base.py -------------------------------------------------------------------------------- /backend/users/backend/config/settings/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/config/settings/database.py -------------------------------------------------------------------------------- /backend/users/backend/config/settings/drf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/config/settings/drf.py -------------------------------------------------------------------------------- /backend/users/backend/config/settings/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/config/settings/logging.py -------------------------------------------------------------------------------- /backend/users/backend/config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/config/urls.py -------------------------------------------------------------------------------- /backend/users/backend/config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/config/wsgi.py -------------------------------------------------------------------------------- /backend/users/backend/customers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/users/backend/customers/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/customers/apps.py -------------------------------------------------------------------------------- /backend/users/backend/customers/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/users/backend/customers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/customers/models.py -------------------------------------------------------------------------------- /backend/users/backend/developers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/users/backend/developers/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/developers/apps.py -------------------------------------------------------------------------------- /backend/users/backend/developers/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/users/backend/developers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/developers/models.py -------------------------------------------------------------------------------- /backend/users/backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/backend/manage.py -------------------------------------------------------------------------------- /backend/users/docker/docker-compose.local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/docker/docker-compose.local.yml -------------------------------------------------------------------------------- /backend/users/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/docker/docker-compose.yml -------------------------------------------------------------------------------- /backend/users/docker/python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/docker/python/Dockerfile -------------------------------------------------------------------------------- /backend/users/docker/python/start-web.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/docker/python/start-web.sh -------------------------------------------------------------------------------- /backend/users/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/poetry.lock -------------------------------------------------------------------------------- /backend/users/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/pyproject.toml -------------------------------------------------------------------------------- /backend/users/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/backend/users/requirements.txt -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/.dockerignore -------------------------------------------------------------------------------- /frontend/.env.example: -------------------------------------------------------------------------------- 1 | # default api url for endpoints 2 | API_URL=http://localhost:3000/mocks 3 | -------------------------------------------------------------------------------- /frontend/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/.eslintignore -------------------------------------------------------------------------------- /frontend/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/.eslintrc -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | cd ./frontend && npx lint-staged -------------------------------------------------------------------------------- /frontend/.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/.lintstagedrc -------------------------------------------------------------------------------- /frontend/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/.prettierignore -------------------------------------------------------------------------------- /frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/.prettierrc -------------------------------------------------------------------------------- /frontend/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/CONTRIBUTING.md -------------------------------------------------------------------------------- /frontend/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/Dockerfile.dev -------------------------------------------------------------------------------- /frontend/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/Dockerfile.prod -------------------------------------------------------------------------------- /frontend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/Makefile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/app/(auth)/Form.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(auth)/Form.module.css -------------------------------------------------------------------------------- /frontend/app/(auth)/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(auth)/Form.tsx -------------------------------------------------------------------------------- /frontend/app/(auth)/SocialBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(auth)/SocialBtn.tsx -------------------------------------------------------------------------------- /frontend/app/(auth)/forgot/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(auth)/forgot/page.tsx -------------------------------------------------------------------------------- /frontend/app/(auth)/signin/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(auth)/signin/page.module.css -------------------------------------------------------------------------------- /frontend/app/(auth)/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(auth)/signin/page.tsx -------------------------------------------------------------------------------- /frontend/app/(auth)/signup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(auth)/signup/page.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/about/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/about/page.module.css -------------------------------------------------------------------------------- /frontend/app/(main)/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/about/page.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/catalog/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/catalog/error.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/catalog/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/catalog/loading.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/catalog/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/catalog/page.module.css -------------------------------------------------------------------------------- /frontend/app/(main)/catalog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/catalog/page.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/contacts/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/contacts/page.module.css -------------------------------------------------------------------------------- /frontend/app/(main)/contacts/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/contacts/page.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/details/[id]/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/details/[id]/page.module.css -------------------------------------------------------------------------------- /frontend/app/(main)/details/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/details/[id]/page.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/details/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/details/error.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/details/loading.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/details/loading.module.css -------------------------------------------------------------------------------- /frontend/app/(main)/details/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/details/loading.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/error.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/layout.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/loading.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/loading.module.css -------------------------------------------------------------------------------- /frontend/app/(main)/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/loading.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/news/[id]/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/news/[id]/error.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/news/[id]/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/news/[id]/page.module.css -------------------------------------------------------------------------------- /frontend/app/(main)/news/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/news/[id]/page.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/news/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/news/error.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/news/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/news/loading.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/news/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/news/page.module.css -------------------------------------------------------------------------------- /frontend/app/(main)/news/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/news/page.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/page.module.css -------------------------------------------------------------------------------- /frontend/app/(main)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/page.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/profile/checkout/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/profile/checkout/page.module.css -------------------------------------------------------------------------------- /frontend/app/(main)/profile/checkout/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/profile/checkout/page.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/profile/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/profile/error.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/profile/favorites/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/profile/favorites/page.module.css -------------------------------------------------------------------------------- /frontend/app/(main)/profile/favorites/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/profile/favorites/page.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/profile/layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/profile/layout.module.css -------------------------------------------------------------------------------- /frontend/app/(main)/profile/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/profile/layout.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/profile/purchases/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/profile/purchases/page.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/profile/settings/@password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/profile/settings/@password/page.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/profile/settings/@profile/ProfileForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/profile/settings/@profile/ProfileForm.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/profile/settings/@profile/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/profile/settings/@profile/loading.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/profile/settings/@profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/profile/settings/@profile/page.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/profile/settings/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/profile/settings/layout.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/profile/settings/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/profile/settings/page.module.css -------------------------------------------------------------------------------- /frontend/app/(main)/profile/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/profile/settings/page.tsx -------------------------------------------------------------------------------- /frontend/app/(main)/user/[id]/page.module.css: -------------------------------------------------------------------------------- 1 | .container{ 2 | @apply mt-16 3 | } -------------------------------------------------------------------------------- /frontend/app/(main)/user/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/(main)/user/[id]/page.tsx -------------------------------------------------------------------------------- /frontend/app/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/global.css -------------------------------------------------------------------------------- /frontend/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/layout.tsx -------------------------------------------------------------------------------- /frontend/app/mocks/auth/access/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/auth/access/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/auth/refresh/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/auth/refresh/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/contacts/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/contacts/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/games/best/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/games/best/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/games/details/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/games/details/[id]/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/games/filters/genres/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/games/filters/genres/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/games/filters/platforms/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/games/filters/platforms/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/games/filters/prices/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/games/filters/prices/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/games/filters/sorts/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/games/filters/sorts/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/games/latest/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/games/latest/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/games/list/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/games/list/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/games/other/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/games/other/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/games/random/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/games/random/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/games/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/games/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/games/search/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/games/search/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/news/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/news/[id]/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/news/comments/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/news/comments/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/news/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/news/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/profile/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/profile/[id]/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/profile/checkout/coupon/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/profile/checkout/coupon/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/profile/checkout/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/profile/checkout/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/profile/favorites/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/profile/favorites/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/profile/purchases/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/profile/purchases/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/profile/settings/password/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/profile/settings/password/route.ts -------------------------------------------------------------------------------- /frontend/app/mocks/profile/settings/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/app/mocks/profile/settings/route.ts -------------------------------------------------------------------------------- /frontend/assets/fonts/Montserrat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/assets/fonts/Montserrat.ttf -------------------------------------------------------------------------------- /frontend/assets/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/assets/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /frontend/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/assets/img/logo.png -------------------------------------------------------------------------------- /frontend/components/Alert/Alert.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Alert/Alert.module.css -------------------------------------------------------------------------------- /frontend/components/Alert/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Alert/Alert.tsx -------------------------------------------------------------------------------- /frontend/components/Alert/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Alert' 2 | -------------------------------------------------------------------------------- /frontend/components/Breadcrumbs/Breadcrumbs.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Breadcrumbs/Breadcrumbs.module.css -------------------------------------------------------------------------------- /frontend/components/Breadcrumbs/Breadcrumbs.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Breadcrumbs/Breadcrumbs.test.tsx -------------------------------------------------------------------------------- /frontend/components/Breadcrumbs/Breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Breadcrumbs/Breadcrumbs.tsx -------------------------------------------------------------------------------- /frontend/components/Breadcrumbs/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Breadcrumbs' 2 | -------------------------------------------------------------------------------- /frontend/components/Carousel/Carousel.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Carousel/Carousel.module.css -------------------------------------------------------------------------------- /frontend/components/Carousel/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Carousel/Carousel.tsx -------------------------------------------------------------------------------- /frontend/components/Carousel/CarouselArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Carousel/CarouselArrow.tsx -------------------------------------------------------------------------------- /frontend/components/Carousel/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Carousel' 2 | -------------------------------------------------------------------------------- /frontend/components/CarouselSection/CarouselSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/CarouselSection/CarouselSection.tsx -------------------------------------------------------------------------------- /frontend/components/CarouselSection/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CarouselSection' 2 | -------------------------------------------------------------------------------- /frontend/components/Container/Container.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Container/Container.module.css -------------------------------------------------------------------------------- /frontend/components/Container/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Container/Container.tsx -------------------------------------------------------------------------------- /frontend/components/Container/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Container' 2 | -------------------------------------------------------------------------------- /frontend/components/Error/Error.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Error/Error.module.css -------------------------------------------------------------------------------- /frontend/components/Error/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Error/Error.tsx -------------------------------------------------------------------------------- /frontend/components/Error/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Error' 2 | -------------------------------------------------------------------------------- /frontend/components/Footer/Footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Footer/Footer.module.css -------------------------------------------------------------------------------- /frontend/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /frontend/components/Footer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Footer' 2 | -------------------------------------------------------------------------------- /frontend/components/Form/CheckBox/CheckBox.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Form/CheckBox/CheckBox.module.css -------------------------------------------------------------------------------- /frontend/components/Form/CheckBox/CheckBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Form/CheckBox/CheckBox.tsx -------------------------------------------------------------------------------- /frontend/components/Form/CheckBox/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CheckBox' 2 | -------------------------------------------------------------------------------- /frontend/components/Form/Form.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Form/Form.module.css -------------------------------------------------------------------------------- /frontend/components/Form/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Form/Form.tsx -------------------------------------------------------------------------------- /frontend/components/Form/Group/Group.module.css: -------------------------------------------------------------------------------- 1 | .group { 2 | @apply mb-[30px] w-full last:mb-0; 3 | } 4 | -------------------------------------------------------------------------------- /frontend/components/Form/Group/Group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Form/Group/Group.tsx -------------------------------------------------------------------------------- /frontend/components/Form/Group/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Group' 2 | -------------------------------------------------------------------------------- /frontend/components/Form/Input/Input.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Form/Input/Input.module.css -------------------------------------------------------------------------------- /frontend/components/Form/Input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Form/Input/Input.tsx -------------------------------------------------------------------------------- /frontend/components/Form/Input/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Input' 2 | -------------------------------------------------------------------------------- /frontend/components/Form/Label/Label.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Form/Label/Label.module.css -------------------------------------------------------------------------------- /frontend/components/Form/Label/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Form/Label/Label.tsx -------------------------------------------------------------------------------- /frontend/components/Form/Label/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Label' 2 | -------------------------------------------------------------------------------- /frontend/components/Form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Form/index.ts -------------------------------------------------------------------------------- /frontend/components/Header/Header.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Header/Header.module.css -------------------------------------------------------------------------------- /frontend/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Header/Header.tsx -------------------------------------------------------------------------------- /frontend/components/Header/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Header' 2 | -------------------------------------------------------------------------------- /frontend/components/NotFound/NotFound.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/NotFound/NotFound.module.css -------------------------------------------------------------------------------- /frontend/components/NotFound/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/NotFound/NotFound.tsx -------------------------------------------------------------------------------- /frontend/components/NotFound/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './NotFound' 2 | -------------------------------------------------------------------------------- /frontend/components/Pagination/Pagination.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Pagination/Pagination.module.css -------------------------------------------------------------------------------- /frontend/components/Pagination/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Pagination/Pagination.tsx -------------------------------------------------------------------------------- /frontend/components/Pagination/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Pagination' 2 | -------------------------------------------------------------------------------- /frontend/components/Platform/Platform.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Platform/Platform.module.css -------------------------------------------------------------------------------- /frontend/components/Platform/Platform.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Platform/Platform.test.tsx -------------------------------------------------------------------------------- /frontend/components/Platform/Platform.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Platform/Platform.tsx -------------------------------------------------------------------------------- /frontend/components/Platform/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Platform/index.ts -------------------------------------------------------------------------------- /frontend/components/Search/Search.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Search/Search.module.css -------------------------------------------------------------------------------- /frontend/components/Search/Search.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Search/Search.test.tsx -------------------------------------------------------------------------------- /frontend/components/Search/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Search/Search.tsx -------------------------------------------------------------------------------- /frontend/components/Search/SearchInput.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Search/SearchInput.test.tsx -------------------------------------------------------------------------------- /frontend/components/Search/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Search/SearchInput.tsx -------------------------------------------------------------------------------- /frontend/components/Search/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Search' 2 | -------------------------------------------------------------------------------- /frontend/components/Section/Section.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Section/Section.module.css -------------------------------------------------------------------------------- /frontend/components/Section/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Section/Section.tsx -------------------------------------------------------------------------------- /frontend/components/Section/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Section' 2 | -------------------------------------------------------------------------------- /frontend/components/Select/Select.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Select/Select.module.css -------------------------------------------------------------------------------- /frontend/components/Select/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Select/Select.tsx -------------------------------------------------------------------------------- /frontend/components/Select/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Select' 2 | -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonCard/SkeletonCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Skeleton/SkeletonCard/SkeletonCard.module.css -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonCard/SkeletonCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Skeleton/SkeletonCard/SkeletonCard.tsx -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonCard/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SkeletonCard' 2 | -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonCheckBox/SkeletonCheckBox.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Skeleton/SkeletonCheckBox/SkeletonCheckBox.module.css -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonCheckBox/SkeletonCheckBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Skeleton/SkeletonCheckBox/SkeletonCheckBox.tsx -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonCheckBox/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SkeletonCheckBox' 2 | -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonGameBigCard/SkeletonGameBigCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Skeleton/SkeletonGameBigCard/SkeletonGameBigCard.module.css -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonGameBigCard/SkeletonGameBigCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Skeleton/SkeletonGameBigCard/SkeletonGameBigCard.tsx -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonGameBigCard/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SkeletonGameBigCard' 2 | -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonInput/SkeletonInput.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Skeleton/SkeletonInput/SkeletonInput.module.css -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonInput/SkeletonInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Skeleton/SkeletonInput/SkeletonInput.tsx -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonInput/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SkeletonInput' 2 | -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonListCheckBoxes/SkeletonListCheckBoxes.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Skeleton/SkeletonListCheckBoxes/SkeletonListCheckBoxes.module.css -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonListCheckBoxes/SkeletonListCheckBoxes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Skeleton/SkeletonListCheckBoxes/SkeletonListCheckBoxes.tsx -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonListCheckBoxes/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SkeletonListCheckBoxes' 2 | -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonSelect/SkeletonSelect.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Skeleton/SkeletonSelect/SkeletonSelect.module.css -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonSelect/SkeletonSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Skeleton/SkeletonSelect/SkeletonSelect.tsx -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonSelect/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SkeletonSelect' 2 | -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonTitle/SkeletonTitle.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Skeleton/SkeletonTitle/SkeletonTitle.module.css -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonTitle/SkeletonTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Skeleton/SkeletonTitle/SkeletonTitle.tsx -------------------------------------------------------------------------------- /frontend/components/Skeleton/SkeletonTitle/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SkeletonTitle' 2 | -------------------------------------------------------------------------------- /frontend/components/Skeleton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Skeleton/index.ts -------------------------------------------------------------------------------- /frontend/components/Slider/Range/Range.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Slider/Range/Range.tsx -------------------------------------------------------------------------------- /frontend/components/Slider/Range/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Range' 2 | -------------------------------------------------------------------------------- /frontend/components/Slider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Slider/index.ts -------------------------------------------------------------------------------- /frontend/components/Table/Table.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Table/Table.module.css -------------------------------------------------------------------------------- /frontend/components/Table/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/components/Table/Table.tsx -------------------------------------------------------------------------------- /frontend/components/Table/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Table' 2 | -------------------------------------------------------------------------------- /frontend/configs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/configs/index.ts -------------------------------------------------------------------------------- /frontend/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/cypress.config.ts -------------------------------------------------------------------------------- /frontend/cypress/e2e/app.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/cypress/e2e/app.cy.ts -------------------------------------------------------------------------------- /frontend/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/cypress/support/commands.ts -------------------------------------------------------------------------------- /frontend/cypress/support/component-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/cypress/support/component-index.html -------------------------------------------------------------------------------- /frontend/cypress/support/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/cypress/support/component.ts -------------------------------------------------------------------------------- /frontend/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/cypress/support/e2e.ts -------------------------------------------------------------------------------- /frontend/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/docker-compose.yml -------------------------------------------------------------------------------- /frontend/features/auth/index.ts: -------------------------------------------------------------------------------- 1 | export * from './utils' 2 | -------------------------------------------------------------------------------- /frontend/features/auth/mocks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './tokens' 2 | -------------------------------------------------------------------------------- /frontend/features/auth/mocks/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/auth/mocks/tokens.ts -------------------------------------------------------------------------------- /frontend/features/auth/types/authPayload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/auth/types/authPayload.ts -------------------------------------------------------------------------------- /frontend/features/auth/types/cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/auth/types/cookie.ts -------------------------------------------------------------------------------- /frontend/features/auth/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/auth/types/index.ts -------------------------------------------------------------------------------- /frontend/features/auth/utils/checkAuthClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/auth/utils/checkAuthClient.ts -------------------------------------------------------------------------------- /frontend/features/auth/utils/checkAuthServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/auth/utils/checkAuthServer.ts -------------------------------------------------------------------------------- /frontend/features/auth/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/auth/utils/index.ts -------------------------------------------------------------------------------- /frontend/features/games/components/FilterGames/FilterGames.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/FilterGames/FilterGames.module.css -------------------------------------------------------------------------------- /frontend/features/games/components/FilterGames/FilterGames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/FilterGames/FilterGames.tsx -------------------------------------------------------------------------------- /frontend/features/games/components/FilterGames/GroupItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/FilterGames/GroupItem.tsx -------------------------------------------------------------------------------- /frontend/features/games/components/FilterGames/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FilterGames' 2 | -------------------------------------------------------------------------------- /frontend/features/games/components/GameCard/GameCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/GameCard/GameCard.module.css -------------------------------------------------------------------------------- /frontend/features/games/components/GameCard/GameCard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/GameCard/GameCard.test.tsx -------------------------------------------------------------------------------- /frontend/features/games/components/GameCard/GameCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/GameCard/GameCard.tsx -------------------------------------------------------------------------------- /frontend/features/games/components/GameCard/GameCardBig.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/GameCard/GameCardBig.test.tsx -------------------------------------------------------------------------------- /frontend/features/games/components/GameCard/GameCardBig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/GameCard/GameCardBig.tsx -------------------------------------------------------------------------------- /frontend/features/games/components/GameCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/GameCard/index.ts -------------------------------------------------------------------------------- /frontend/features/games/components/Languages/Language.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/Languages/Language.module.css -------------------------------------------------------------------------------- /frontend/features/games/components/Languages/Language.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/Languages/Language.tsx -------------------------------------------------------------------------------- /frontend/features/games/components/Languages/Languages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/Languages/Languages.tsx -------------------------------------------------------------------------------- /frontend/features/games/components/Languages/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Languages' 2 | -------------------------------------------------------------------------------- /frontend/features/games/components/ListGames/ListGame.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/ListGames/ListGame.module.css -------------------------------------------------------------------------------- /frontend/features/games/components/ListGames/ListGame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/ListGames/ListGame.tsx -------------------------------------------------------------------------------- /frontend/features/games/components/ListGames/ListGames.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/ListGames/ListGames.module.css -------------------------------------------------------------------------------- /frontend/features/games/components/ListGames/ListGames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/ListGames/ListGames.tsx -------------------------------------------------------------------------------- /frontend/features/games/components/ListGames/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ListGames' 2 | -------------------------------------------------------------------------------- /frontend/features/games/components/Requirements/Requirement.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/Requirements/Requirement.module.css -------------------------------------------------------------------------------- /frontend/features/games/components/Requirements/Requirement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/Requirements/Requirement.tsx -------------------------------------------------------------------------------- /frontend/features/games/components/Requirements/Requirements.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/Requirements/Requirements.module.css -------------------------------------------------------------------------------- /frontend/features/games/components/Requirements/Requirements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/Requirements/Requirements.tsx -------------------------------------------------------------------------------- /frontend/features/games/components/Requirements/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Requirements' 2 | -------------------------------------------------------------------------------- /frontend/features/games/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/components/index.ts -------------------------------------------------------------------------------- /frontend/features/games/mocks/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/mocks/filter.ts -------------------------------------------------------------------------------- /frontend/features/games/mocks/games.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/mocks/games.ts -------------------------------------------------------------------------------- /frontend/features/games/mocks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/mocks/index.ts -------------------------------------------------------------------------------- /frontend/features/games/models/IProduct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/models/IProduct.ts -------------------------------------------------------------------------------- /frontend/features/games/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/models/index.ts -------------------------------------------------------------------------------- /frontend/features/games/types/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/types/filter.ts -------------------------------------------------------------------------------- /frontend/features/games/types/games.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/types/games.ts -------------------------------------------------------------------------------- /frontend/features/games/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/games/types/index.ts -------------------------------------------------------------------------------- /frontend/features/news/components/ArticleContent/ArticleContent.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/components/ArticleContent/ArticleContent.module.css -------------------------------------------------------------------------------- /frontend/features/news/components/ArticleContent/ArticleContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/components/ArticleContent/ArticleContent.tsx -------------------------------------------------------------------------------- /frontend/features/news/components/ArticleContent/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ArticleContent' 2 | -------------------------------------------------------------------------------- /frontend/features/news/components/Comments/Comments.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/components/Comments/Comments.module.css -------------------------------------------------------------------------------- /frontend/features/news/components/Comments/Comments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/components/Comments/Comments.tsx -------------------------------------------------------------------------------- /frontend/features/news/components/Comments/SingleComment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/components/Comments/SingleComment.tsx -------------------------------------------------------------------------------- /frontend/features/news/components/Comments/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Comments' 2 | -------------------------------------------------------------------------------- /frontend/features/news/components/LatestNews/LatestNews.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/components/LatestNews/LatestNews.module.css -------------------------------------------------------------------------------- /frontend/features/news/components/LatestNews/LatestNews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/components/LatestNews/LatestNews.tsx -------------------------------------------------------------------------------- /frontend/features/news/components/LatestNews/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './LatestNews' 2 | -------------------------------------------------------------------------------- /frontend/features/news/components/NewsItem/NewsItem.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/components/NewsItem/NewsItem.module.css -------------------------------------------------------------------------------- /frontend/features/news/components/NewsItem/NewsItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/components/NewsItem/NewsItem.tsx -------------------------------------------------------------------------------- /frontend/features/news/components/NewsItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './NewsItem' 2 | -------------------------------------------------------------------------------- /frontend/features/news/components/RelatedNews/RelatedNews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/components/RelatedNews/RelatedNews.tsx -------------------------------------------------------------------------------- /frontend/features/news/components/RelatedNews/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './RelatedNews' 2 | -------------------------------------------------------------------------------- /frontend/features/news/components/SocialLink/SocialLink.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/components/SocialLink/SocialLink.module.css -------------------------------------------------------------------------------- /frontend/features/news/components/SocialLink/SocialLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/components/SocialLink/SocialLink.tsx -------------------------------------------------------------------------------- /frontend/features/news/components/SocialLink/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SocialLink' 2 | -------------------------------------------------------------------------------- /frontend/features/news/components/Subscribe/Subscribe.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/components/Subscribe/Subscribe.module.css -------------------------------------------------------------------------------- /frontend/features/news/components/Subscribe/Subscribe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/components/Subscribe/Subscribe.tsx -------------------------------------------------------------------------------- /frontend/features/news/components/Subscribe/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Subscribe' 2 | -------------------------------------------------------------------------------- /frontend/features/news/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/components/index.ts -------------------------------------------------------------------------------- /frontend/features/news/mocks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/mocks/index.ts -------------------------------------------------------------------------------- /frontend/features/news/models/INews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/models/INews.ts -------------------------------------------------------------------------------- /frontend/features/news/models/INewsCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/models/INewsCategory.ts -------------------------------------------------------------------------------- /frontend/features/news/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/models/index.ts -------------------------------------------------------------------------------- /frontend/features/news/types/comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/types/comments.ts -------------------------------------------------------------------------------- /frontend/features/news/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/types/index.ts -------------------------------------------------------------------------------- /frontend/features/news/types/news.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/news/types/news.ts -------------------------------------------------------------------------------- /frontend/features/profile/components/CheckAge/CheckAge.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/profile/components/CheckAge/CheckAge.module.css -------------------------------------------------------------------------------- /frontend/features/profile/components/CheckAge/CheckAge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/profile/components/CheckAge/CheckAge.tsx -------------------------------------------------------------------------------- /frontend/features/profile/components/CheckAge/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CheckAge' 2 | -------------------------------------------------------------------------------- /frontend/features/profile/components/CheckoutCouponForm/CheckoutCouponForm.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/profile/components/CheckoutCouponForm/CheckoutCouponForm.module.css -------------------------------------------------------------------------------- /frontend/features/profile/components/CheckoutCouponForm/CheckoutCouponForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/profile/components/CheckoutCouponForm/CheckoutCouponForm.tsx -------------------------------------------------------------------------------- /frontend/features/profile/components/CheckoutCouponForm/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CheckoutCouponForm' 2 | -------------------------------------------------------------------------------- /frontend/features/profile/components/CheckoutForm/CheckoutForm.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/profile/components/CheckoutForm/CheckoutForm.module.css -------------------------------------------------------------------------------- /frontend/features/profile/components/CheckoutForm/CheckoutForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/profile/components/CheckoutForm/CheckoutForm.tsx -------------------------------------------------------------------------------- /frontend/features/profile/components/CheckoutForm/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CheckoutForm' 2 | -------------------------------------------------------------------------------- /frontend/features/profile/components/CheckoutTable/CheckoutTable.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/profile/components/CheckoutTable/CheckoutTable.module.css -------------------------------------------------------------------------------- /frontend/features/profile/components/CheckoutTable/CheckoutTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/profile/components/CheckoutTable/CheckoutTable.tsx -------------------------------------------------------------------------------- /frontend/features/profile/components/CheckoutTable/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CheckoutTable' 2 | -------------------------------------------------------------------------------- /frontend/features/profile/components/PurchaseTable/PurchaseTable.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/profile/components/PurchaseTable/PurchaseTable.module.css -------------------------------------------------------------------------------- /frontend/features/profile/components/PurchaseTable/PurchaseTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/profile/components/PurchaseTable/PurchaseTable.tsx -------------------------------------------------------------------------------- /frontend/features/profile/components/PurchaseTable/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './PurchaseTable' 2 | -------------------------------------------------------------------------------- /frontend/features/profile/components/UserItem/UserItem.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/profile/components/UserItem/UserItem.module.css -------------------------------------------------------------------------------- /frontend/features/profile/components/UserItem/UserItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/profile/components/UserItem/UserItem.tsx -------------------------------------------------------------------------------- /frontend/features/profile/components/UserItem/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './UserItem' 2 | -------------------------------------------------------------------------------- /frontend/features/profile/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/profile/components/index.ts -------------------------------------------------------------------------------- /frontend/features/profile/mocks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/profile/mocks/index.ts -------------------------------------------------------------------------------- /frontend/features/profile/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/features/profile/types/index.ts -------------------------------------------------------------------------------- /frontend/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/hooks/index.ts -------------------------------------------------------------------------------- /frontend/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/hooks/useDebounce.ts -------------------------------------------------------------------------------- /frontend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/jest.config.js -------------------------------------------------------------------------------- /frontend/lib/errorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/lib/errorHandler.ts -------------------------------------------------------------------------------- /frontend/lib/fetchServerSide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/lib/fetchServerSide.ts -------------------------------------------------------------------------------- /frontend/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/lib/types.ts -------------------------------------------------------------------------------- /frontend/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/middleware.ts -------------------------------------------------------------------------------- /frontend/next-app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/next-app.d.ts -------------------------------------------------------------------------------- /frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/next.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/partners/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/public/partners/about.jpg -------------------------------------------------------------------------------- /frontend/public/partners/activeden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/public/partners/activeden.png -------------------------------------------------------------------------------- /frontend/public/partners/audiojungle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/public/partners/audiojungle.png -------------------------------------------------------------------------------- /frontend/public/partners/codecanyon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/public/partners/codecanyon.png -------------------------------------------------------------------------------- /frontend/public/partners/docean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/public/partners/docean.png -------------------------------------------------------------------------------- /frontend/public/partners/photodune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/public/partners/photodune.png -------------------------------------------------------------------------------- /frontend/public/partners/themeforest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/public/partners/themeforest.png -------------------------------------------------------------------------------- /frontend/public/svg/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/public/svg/arrow.svg -------------------------------------------------------------------------------- /frontend/public/svg/arrow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/public/svg/arrow2.svg -------------------------------------------------------------------------------- /frontend/public/svg/arrow3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/public/svg/arrow3.svg -------------------------------------------------------------------------------- /frontend/public/svg/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/public/svg/checkmark.svg -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/utils/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/utils/randomItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/utils/randomItem.ts -------------------------------------------------------------------------------- /frontend/utils/randomNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJWOMS/GSpot/HEAD/frontend/utils/randomNumber.ts --------------------------------------------------------------------------------