Skip to content

Commit

Permalink
Merge pull request #415 from evershopcommerce/dev
Browse files Browse the repository at this point in the history
Release 1.0.0-rc.9
  • Loading branch information
treoden authored Dec 22, 2023
2 parents f643755 + ebd8bbe commit bf223e7
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 12 deletions.
9 changes: 8 additions & 1 deletion packages/azure_file_storage/README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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="<Your connection string>"
AZURE_STORAGE_CONTAINER_NAME="<Your 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"
Expand Down
12 changes: 8 additions & 4 deletions packages/evershop/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/evershop/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
10 changes: 5 additions & 5 deletions packages/s3_file_storage/README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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="<Your access key>"
AWS_SECRET_ACCESS_KEY="<Your secret access key>"
AWS_REGION="<Your region>"
AWS_BUCKET_NAME="<Your bucket name>"
```

### Step 4: Active the AWS S3 storage
Expand Down

0 comments on commit bf223e7

Please sign in to comment.