diff --git a/CHANGELOG.md b/CHANGELOG.md index 4094e56..b2e0a07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [1.0.6] 2024-05-11 +### Changes + +- Remove Browser Reload +- Update Docker (added Redis) +- Update DOCS (readme) + ## [1.0.5] 2024-04-17 ### Changes diff --git a/README.md b/README.md index f55f239..93921db 100644 --- a/README.md +++ b/README.md @@ -57,27 +57,23 @@ The Django boilerplate with all you need to build your SaaS, AI tool, or any oth ## Manual Build -> 👉 Download code +> 👉 Unzip sources or clone the private repository (requires a [purchase](https://appseed.us/product/rocket-pro/django/)) ```bash -$ git clone https://github.com/app-generator/rocket-django-pro.git +$ unzip rocket-django-pro.zip +// OR +$ git clone https://github.com/app-generator/priv-rocket-django-pro.git $ cd rocket-django-pro ``` -> 👉 Create `.env` from `env.sample` +> 👉 Edit `.env` using `env.sample` or keep the default values ```env -DEBUG=False +DEBUG=True SECRET_KEY= -# For Myql or PgSQL Persistence -# DB_ENGINE=mysql -# DB_HOST=localhost -# DB_NAME=appseed_rocket_django -# DB_USERNAME=root -# DB_PASS= -# DB_PORT=3306 +... ``` > 👉 Install **Django** modules via `VENV` @@ -116,10 +112,12 @@ $ python manage.py runserver # start the project ## Start With Docker -> 👉 Download code +> 👉 Unzip sources or clone the private repository (requires a [purchase](https://appseed.us/product/rocket-pro/django/)) ```bash -$ git clone https://github.com/app-generator/rocket-django-pro.git +$ unzip rocket-django-pro.zip +// OR +$ git clone https://github.com/app-generator/priv-rocket-django-pro.git $ cd rocket-django-pro ```