Skip to content

musaevonline/nextjs-shop

Repository files navigation

Requirements

  1. Docker
  2. Docker Compose

How to run it?

  1. Clone the repository:
$ git clone https://github.com/vladkoblynsky/shop.git
  1. We are using shared folders to enable live code reloading. Without this, Docker Compose will not start:

    • Windows/MacOS: Add the cloned shop directory to Docker shared directories (Preferences -> Resources -> File sharing).
    • Windows/MacOS: Make sure that in Docker preferences you have dedicated at least 5 GB of memory (Preferences -> Resources -> Advanced).
    • Linux: No action required, sharing already enabled and memory for Docker engine is not limited.
  2. Go to the cloned directory:

$ cd shop
  1. Build the application:
$ docker-compose -f dev.yml build
  1. Apply Django migrations:
$ docker-compose run --rm api python3 manage.py migrate
  1. Collect static files:
$ docker-compose run --rm api python3 manage.py collectstatic --noinput
  1. Create the admin user:
$ docker-compose run --rm api python3 manage.py createsuperuser
  1. Run the application:
$ docker-compose -f dev.yml up

Create db backup: docker exec ${container} pg_dump -U ${username} -d ${dbname} > ${backup_file}

Restore db: docker exec -i ${container} psql -U ${username} -d ${dbname} < ${backup_file}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published