ecommerce_api icon indicating copy to clipboard operation
ecommerce_api copied to clipboard

Fix errors in documents

Open Walking2hell opened this issue 6 months ago • 0 comments

Description: I noticed a few issues and inconsistencies in the installation and setup documentation. Correcting these will help new contributors and users set up the project smoothly.

Issues Found : Admin user creation command : Current : python manage.py dosuperuser Correct : python manage.py createsuperuser

 Database dump command :
       Current : pg_dump dbname=ecommerce -f /tmp/ecommerce.psql
       Correc t: pg_dump -U postgres -d ecommerce -f /tmp/ecommerce.psql

 Elastic Search version not specified :
       Currently says : "install Elastic Search (use brew)"
       Suggestion : Specify supported version e.g Elasticsearch 7.x

Walking2hell avatar Sep 25 '25 14:09 Walking2hell