From ebd8bbef212a0b73c3b6b6bc87a68a3e967c2a53 Mon Sep 17 00:00:00 2001 From: The Nguyen <6950941+treoden@users.noreply.github.com> Date: Fri, 22 Dec 2023 21:58:51 +0700 Subject: [PATCH] Release 1.0.0-rc.9 --- packages/azure_file_storage/README.md | 9 ++++++++- packages/evershop/README.md | 12 ++++++++---- packages/evershop/package.json | 4 ++-- packages/s3_file_storage/README.md | 10 +++++----- 4 files changed, 23 insertions(+), 12 deletions(-) diff --git a/packages/azure_file_storage/README.md b/packages/azure_file_storage/README.md index 598d78a93..47db39738 100644 --- a/packages/azure_file_storage/README.md +++ b/packages/azure_file_storage/README.md @@ -1,6 +1,6 @@ # Azure storage extension for EverShop -This extension allows you to store your EverShop files on Azure Blob Storage. +This extension allows you to store your EverShop files including product images, banners on Azure Blob Storage. > **Note**: This extension requires EverShop version 1.0.0-rc.9 or higher. @@ -38,6 +38,13 @@ Edit the `config/default.json` file in the root directory of your EverShop insta Edit the `.env` file: +```bash +AZURE_STORAGE_CONNECTION_STRING="" +AZURE_STORAGE_CONTAINER_NAME="" +``` + +Example: + ```bash AZURE_STORAGE_CONNECTION_STRING="DefaultEndpointsProtocol=https;AccountName=myevershop;AccountKey=+b1/nrwkpOF5DZCybDqSDFDdfGCQSbx8eua3y7sadgfdgdfAdNNbns6xMNh+EeE0b10uc0ZJ+AStvBx8pg==;EndpointSuffix=core.windows.net" AZURE_STORAGE_CONTAINER_NAME="images" diff --git a/packages/evershop/README.md b/packages/evershop/README.md index 419b7255f..0dfa8e594 100644 --- a/packages/evershop/README.md +++ b/packages/evershop/README.md @@ -31,14 +31,18 @@ EverShop is a GraphQL Based and React ecommerce platform with essential commerce features. Built with React, modular and fully customizable. -## Quick Start +## Installation Using Docker -You can get started with EverShop in minutes by running the following command: + +You can get started with EverShop in minutes by using the Docker image. The Docker image is a great way to get started with EverShop without having to worry about installing dependencies or configuring your environment. ```bash -npx create-evershop-app my-app +curl -sSL https://raw.githubusercontent.com/evershopcommerce/evershop/main/docker-compose.yml > docker-compose.yml +docker-compose up -d ``` +For the full installation guide, please refer to our [Installation guide](https://evershop.io/docs/development/getting-started/installation-guide). + ## Documentation - [Installation guide](https://evershop.io/docs/development/getting-started/installation-guide). @@ -73,7 +77,7 @@ Password: 123456 If you like my work, feel free to: - ⭐ this repository. It helps. -- [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)][tweet] about EverShop. Please accept my gratitude. +- [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)][tweet] about EverShop. Thank you! [tweet]: https://twitter.com/intent/tweet?url=https%3A%2F%2Fgithub.com%2Fevershopcommerce%2Fevershop&text=Awesome%20React%20Ecommerce%20Project&hashtags=react,ecommerce,expressjs,graphql ### Ask a question about EverShop diff --git a/packages/evershop/package.json b/packages/evershop/package.json index 01d381ef1..6956ff93e 100644 --- a/packages/evershop/package.json +++ b/packages/evershop/package.json @@ -1,6 +1,6 @@ { "name": "@evershop/evershop", - "version": "1.0.0-rc.8", + "version": "1.0.0-rc.9", "description": "The React Ecommerce platform. Built with React and Postgres. Open-source and free. Fast and customizable.", "files": [ "bin", @@ -40,7 +40,7 @@ "@babel/preset-react": "^7.16.0", "@ckeditor/ckeditor5-build-classic": "^36.0.1", "@ckeditor/ckeditor5-react": "^5.1.0", - "@evershop/postgres-query-builder": "^1.0.9", + "@evershop/postgres-query-builder": "^1.0.10", "@graphql-tools/load-files": "^6.6.1", "@graphql-tools/merge": "^8.3.5", "@graphql-tools/schema": "^9.0.3", diff --git a/packages/s3_file_storage/README.md b/packages/s3_file_storage/README.md index ddd56dc6a..0702ffd85 100644 --- a/packages/s3_file_storage/README.md +++ b/packages/s3_file_storage/README.md @@ -1,6 +1,6 @@ # AWS S3 storage extension for EverShop -This extension allows you to store your EverShop files on AWS S3. +This extension allows you to store your EverShop files including product images, banners on AWS S3. > **Note**: This extension requires EverShop version 1.0.0-rc.9 or higher. @@ -39,10 +39,10 @@ Edit the `config/default.json` file in the root directory of your EverShop insta Edit the `.env` file: ```bash -AWS_ACCESS_KEY_ID="etertsfsdfsdf" -AWS_SECRET_ACCESS_KEY="sdfsd" -AWS_REGION="eu-west-1" -AWS_BUCKET_NAME="mybucket" +AWS_ACCESS_KEY_ID="" +AWS_SECRET_ACCESS_KEY="" +AWS_REGION="" +AWS_BUCKET_NAME="" ``` ### Step 4: Active the AWS S3 storage