Requirements
- a web server (apache, nginx, etc.)
- git
- docker
- docker-compose
- make
Installation
git clone https://gitlab.com/litt-arts-num/tact.git
cd tact
make init
By default, Symfony app should be available @ http://localhost:8082/ and adminer should be available @ http://localhost:8088/
Usefull commands
These commands should be run inside docker container (docker-compose exec apache bash
)
-
create a new user (use
-a
if you want to create an admin user)bin/console app:create-user [-a]
-
other usefull commands can be found in
application/Makefile
Host config.
- we use apache and reverseproxy to target multiple applications in various docker containers. See this apache conf. example.
<VirtualHost *:80>
ServerName tact.demarre-shs.fr
ProxyPreserveHost On
ProxyPass / https://localhost:8082/
ProxyPassReverse / https://localhost:8082/
</VirtualHost>