Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 1008 Bytes

setup-docker.md

File metadata and controls

41 lines (31 loc) · 1008 Bytes

Docker-Based Setup Instructions

Prerequisites

Steps

  1. Clone the repository:

    git clone https://github.com/scify/Crowdsourcing-Platform.git
    cd Crowdsourcing-Platform
  2. Build and run the containers:

    docker compose up --build
  3. Access the application:

  4. Run Laravel setup commands inside the container:

    docker exec -it crowdsourcing_platform_server bash
    php artisan migrate
    php artisan db:seed
    php artisan key:generate
    php artisan storage:link
  5. Optional: Compile front-end assets:

    npm install
    npm run dev

Refer to the main README for additional details.