Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meetmatt/colla
Collaborative 360-degree review
https://github.com/meetmatt/colla
docker symfony
Last synced: 8 days ago
JSON representation
Collaborative 360-degree review
- Host: GitHub
- URL: https://github.com/meetmatt/colla
- Owner: meetmatt
- Created: 2018-09-07T12:09:42.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-22T05:14:30.000Z (26 days ago)
- Last Synced: 2024-10-23T07:34:02.884Z (25 days ago)
- Topics: docker, symfony
- Language: PHP
- Size: 983 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Collaborative 360-degree review
## Project structure
Directories:
- `code` contains application code
- `api` is a Symfony 4 API application
- `frontend` is a Vue.js single-page application
- `infra` holds configuration and scripts related to application's infrastructure
- `dev` used for local development
- `doc` contains documentation## Installing
Requirements:
- PHP 7.2
- PDO MySQL extension
- Composer```bash
cd code/api
composer install
```## Running on dev
Requires Docker and Docker Compose.
```bash
echo '127.0.0.1 dev.colla.io' | sudo tee --append /etc/hosts
# add local self-signed certificate to trusted, see infra/dev/proxy/certs/generate.sh
docker-compose -f infra/dev/docker-compose.yml up -d
open 'https://dev.colla.io'
```