Mark-a-Spot is an open-source Civic Issue Tracking and Open311 Server built on Drupal CMS. This repository provides a Docker setup to facilitate running Mark-a-Spot.
These instructions will guide you through getting a copy of the project up and running on your local machine for development and testing purposes.
- Docker
- Docker Compose
-
Clone this repository:
git clone https://github.com/markaspot/mark-a-spot.git cd mark-a-spot
-
Run the Docker containers:
docker-compose up -d
-
Run the
start.sh
script If it gives you an error of permission denied make it executable with:chmod a+x ./scripts/start.sh
)docker exec -it markaspot ./scripts/start.sh -y
The
start.sh
script has two options:-y
For automatic installation with predefined values (latitude: 40.73, longitude: -73.93, city: New York, locale: en_US)-t
To import translation file from the/translations
directory and enable translations for terms
Once the script has executed, the application should be accessible at http://localhost. Please exercise caution when executing the script, as it will drop the database and initialize Mark-a-Spot from scratch. Additionally, familiarize yourself with the Drupal development process, including configuring changes, backing up databases, and other relevant procedures.
The Docker Compose setup includes the following services:
web
: The Nginx web servermarkaspot
: The Mark-a-Spot Drupal applicationdb
: The MariaDB databasephpmyadmin
: PHPMyAdmin for database management
You can adjust the configuration of the Docker services by editing the docker-compose.yml
file. For example, you can modify the database username and password, the PHP memory limit, and other settings.
Access the Drupal application at http://localhost
.
PHPMyAdmin is available at http://localhost:8080
for database management.
For local development, we recommend using Docksal, a Docker-based development environment.
- Docksal
- Docker
- Docker Compose
-
Install Docksal on your machine, following the instructions on the Docksal website.
-
Clone this repository:
git clone https://github.com/markaspot/mark-a-spot.git cd mark-a-spot
-
Initialize the Docksal project:
fin up
-
Copy the local settings file to the web sites default directory and change your settings.php
cp web/sites/example.settings.local.php web/sites/default/settings.local.php
-
Swap drush version as long docksal/docksal#1783 is not solved:
fin bash echo -e "\n"'export PATH="${PROJECT_ROOT:-/var/www}/vendor/bin:$PATH"' >> $HOME/.profile; source $HOME/.profile
-
Run
scripts/start.sh
in docksal CLI (see above)
You can adjust the configuration of the Docker services by editing the docksal.yml
file. For example, you can modify the database username and password, the PHP memory limit, and other settings.
You can access the Drupal application at http://mark-a-spot.docksal.site
.
Mark-a-Spot is freely available under the GNU General Public License, version 2 or any later version license.