Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 1.25 KB

Getting-Started.md

File metadata and controls

38 lines (24 loc) · 1.25 KB

Getting Started

Setup Project

  1. Install Docker and Docker Compose

  2. Run it

# Clone
git clone https://github.com/Mosasauroidea/GazellePW.git
cd GazellePW

# Start
docker-compose -p gazelle up
  1. Now you can access the website through http://localhost:9000

  2. Register an account: check email in ./cache/emails/ to activate your account.

  3. Configuration (optional): create config.local.php, override anything from config.default.php

  4. If you need the tracker, please deploy the Ocelot.

Setup Editor

Going further

# Create a database migration
docker-compose exec -it --user gazelle web  vendor/bin/phinx create MyNewMigration

# Run database migration
docker-compose exec -it --user gazelle web vendor/bin/phinx migrate