https://github.com/cvilleger/snooper
https://github.com/cvilleger/snooper
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cvilleger/snooper
- Owner: cvilleger
- Created: 2018-10-17T21:34:59.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-17T03:10:41.000Z (about 2 years ago)
- Last Synced: 2025-02-02T00:41:15.344Z (4 months ago)
- Language: PHP
- Size: 55.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://dev.azure.com/villegerc/Snooper/_build/latest?definitionId=1)
[](https://travis-ci.com/cvilleger/snooper)
[](https://www.codacy.com/app/cvilleger/snooper)
[](https://www.codacy.com/app/cvilleger/snooper)# Snooper
*Yet Another Testing Quality Continuous Integration.*## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
### Prerequisites
What things you need to install the software and how to install them
- [Docker CE](https://www.docker.com/community-edition)
### Install
**1.** Copy `.env.dist` to `.env`
```
cp .env.dist .env
```**2.** Copy `docker-compose.override.yml.dist` to `docker-compose.override.yml`
```
cp docker-compose.override.yml.dist docker-compose.override.yml
```**3.** Builds, (re)creates and starts containers in the background
```
docker-compose up -d
```**4.** Install dependencies
```
docker-compose exec --user=application web composer install
```**5.** Drop, create and update your database
```
docker-compose exec web php bin/console doctrine:database:drop --force
docker-compose exec web php bin/console doctrine:database:create
docker-compose exec web php bin/console doctrine:schema:update --force
```**6.** Done
Web
```
http://localhost
```phpMyAdmin
```
http://localhost:8080
```