Skip to content

Commit e9d732e

Browse files
committed
add evershop
1 parent 5f6d4bf commit e9d732e

File tree

3 files changed

+68
-1
lines changed

3 files changed

+68
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ docker compose up
160160
- [HedgeDoc](examples/hedgedoc) - HedgeDoc lets you create real-time collaborative markdown notes.
161161
- [YOURLS](examples/yourls) - The de-facto standard self hosted URL shortener in PHP.
162162

163-
### Publishing, Writing, Blogging, Hosting
163+
### Publishing, Writing, Blogging, Hosting, E-Commerce
164164
- [Ghost](examples/ghost) - Ghost is a free and open source blogging platform written in JavaScript and distributed under the MIT License, designed to simplify the process of online publishing for individual bloggers as well as online publications.
165165
- [WordPress](examples/wordpress) - WordPress is a free and open-source content management system written in hypertext preprocessor language and paired with a MySQL or MariaDB database with supported HTTPS.
166166
- [Nginx + PHP](examples/nginx-php) - Nginx is a web server that can also be used as a reverse proxy, load balancer, mail proxy and HTTP cache. Combined with PHP, a general-purpose scripting language geared toward web development, server-side functions can be implemented for the webs.
@@ -172,6 +172,7 @@ docker compose up
172172
- [Reactive-Resume](examples/rxresume) - A one-of-a-kind resume builder that keeps your privacy in mind. Completely secure, customizable, portable, open-source and free forever.
173173
- [Monkeytype](examples/monkeytype) - The most customizable typing website with a minimalistic design and a ton of features. Test yourself in various modes, track your progress and improve your speed.
174174
- [HedgeDoc](examples/hedgedoc) - HedgeDoc lets you create real-time collaborative markdown notes.
175+
- [EverShop](examples/evershop) - EverShop is a GraphQL Based and React ecommerce platform with essential commerce features. Built with React, modular and fully customizable.
175176

176177
### Analytics
177178
- [Matomo](examples/matomo) - Matomo is the leading Free/Libre open analytics platform.

examples/evershop/README.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# References
2+
3+
- https://github.com/evershopcommerce/evershop
4+
- https://evershop.io/docs/development/getting-started/installation-guide
5+
6+
# Notes
7+
8+
After spawning up the docker containers, the webshop will be available on http://127.0.0.1:3000.
9+
10+
You can access the admin dashboard at /admin. You must create a new admin user by Docker exec as follows:
11+
12+
````
13+
# exec into the evershop container
14+
docker exec -it evershop sh
15+
16+
# creating a new admin user
17+
npm run user:create -- --email "[email protected]" --password "MySuperSecurePassword" --name "MyName"
18+
````

examples/evershop/docker-compose.yml

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
version: '3.8'
2+
3+
services:
4+
5+
app:
6+
image: evershop/evershop:latest
7+
container_name: evershop
8+
restart: always
9+
environment:
10+
DB_HOST: database
11+
DB_PORT: 5432
12+
DB_PASSWORD: postgres
13+
DB_USER: postgres
14+
DB_NAME: postgres
15+
depends_on:
16+
- database
17+
ports:
18+
- 3000:3000
19+
expose:
20+
- 3000
21+
#networks:
22+
# - proxy
23+
#labels:
24+
# - traefik.enable=true
25+
# - traefik.docker.network=proxy
26+
# - traefik.http.routers.evershop.rule=Host(`shop.example.com`)
27+
# - traefik.http.services.evershop.loadbalancer.server.port=3000
28+
# # Part for optional traefik middlewares
29+
# - traefik.http.routers.evershop.middlewares=local-ipwhitelist@file,authelia@docker
30+
31+
database:
32+
image: postgres:16
33+
container_name: evershop-db
34+
restart: unless-stopped
35+
volumes:
36+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/evershop/psqldata:/var/lib/postgresql/data
37+
environment:
38+
POSTGRES_PASSWORD: postgres
39+
POSTGRES_USER: postgres
40+
POSTGRES_DB: postgres
41+
expose:
42+
- 5432
43+
#networks:
44+
# - proxy
45+
46+
#networks:
47+
# proxy:
48+
# external: true

0 commit comments

Comments
 (0)