Fixes: None; Extra: 1) Remove unused healthcheck configuration from `docker-compose.yml`. |
||
|---|---|---|
| blog | ||
| core | ||
| Dockerfiles | ||
| evibes | ||
| monitoring | ||
| payments | ||
| scripts | ||
| vibes_auth | ||
| .dockerignore | ||
| .gitignore | ||
| CODEOWNERS | ||
| docker-compose.yml | ||
| LICENSE | ||
| manage.py | ||
| nginx | ||
| poetry.lock | ||
| pyproject.toml | ||
| README.md | ||
eVibes
eVibes is an eCommerce backend service built with Django. It’s designed for flexibility, making it ideal for various use cases and learning Django skills. The project is straightforward to customize, allowing for straightforward editing and extension.
Table of Contents
Features
- Modular Architecture: Extend and customize the backend to fit your needs.
- Dockerized Deployment: Quick setup and deployment using Docker and Docker Compose.
- Asynchronous Task Processing: Integrated Celery workers and beat scheduler for background tasks.
- GraphQL and REST APIs: Supports both GraphQL and RESTful API endpoints.
- Internationalization: Multilingual support using modeltranslate.
- Advanced Caching: Utilizes Redis for caching and task queuing.
- Security: Implements JWT authentication and rate limiting.
Getting Started
Prerequisites
- Docker and Docker Compose are installed on your machine.
Installation
-
Clone the repository:
git clone https://gitlab.com/wiseless.xyz/eVibes.git cd eVibes -
Choose the storefront. By default,
mainbranch has Astro one. Skip this step if you're OK with Astro.git checkout storefront-<option: astro, nuxt, remix, svelte, solid, analog > -
Generate your .env file. Check and confirm the contents afterward.
- Windows
scripts\Windows\generate-environment-file.ps1 - Unix
scripts/Unix/generate-environment-file.sh
- Windows
-
Install all the dependencies.
- Windows
scripts\Windows\install.ps1 - Unix
scripts/Unix/install.sh
- Windows
-
Spin it up.
- Windows
scripts\Windows\run.ps1 - Unix
scripts/Unix/run.sh
- Windows
-
Bring to production.
Include
nginxfile to your nginx configuration, you really want to install and run Certbot afterward!
Configuration
Dockerfile
Remember to change the
RUN sed -i 's|https://deb.debian.org/debian|https://ftp.<locale>.debian.org/debian|g' /etc/apt/sources.list.d/debian.sources
before running installment scripts
nginx
Please comment-out SSL-related lines, then apply necessary configurations, run certbot --cert-only --nginx,
decomment previously commented lines and enjoy eVibes over HTTPS!
.env
After .env file generation, you may want to edit some of its values, such as macroservices` API keys, database password, redis password, etc.
Usage
- Add the necessary subdomains to DNS-settings of your domain, those are:
- @.your-domain.com
- www.your-domain.com
- api.your-domain.com
- b2b.your-domain.com
- prometheus.your-domain.com
- Add these lines to your hosts-file to use django-hosts functionality on localhost(DEVELOPMENT ONLY):
127.0.0.1 api.localhost
127.0.0.1 b2b.localhost
Once the services are up and running, you can access the application at
http://api.your-domain.com(http://api.localhost:8000).
- Django Admin:
http://api.your-domain.com/(will redirect to admin) - API Docs:
- REST API:
http://api.localhost:8000/docs/swaggerorhttp://api.localhost:8000/docs/redoc - GraphQL API:
http://api.localhost:8000/graphql/
- REST API:
Uninstall eVibes
You are not planning to do that, aren't you?
- Windows
scripts\Windows\uninstall.ps1 - Unix
scripts/Unix/uninstall.sh
Contact
- Author: Egor "fureunoir" Gorbunov
- Email: contact@fureunoir.com
- Telegram: @fureunoir

