This repository is here to hold all insalan.fr infrastructure.
Please read carefullythe CONTRIBUTING.md file before any contribution.
git clone [email protected]:InsaLan/infra-insalan.fr.git --recurse-submodules
cp .env.dist .env # edit your .env with your local settings then:
chmod 0600 .env
docker compose -f docker-compose-beta.yml up
Then to stop the containers:
docker compose -f docker-compose-beta.yml down
The website is available at the value of WEBSITE_HOST
which should be
insalan.fr
or insalan.localhost
depending on where it's running. It's API
backend is available at api.WEBSITE_HOST
.
The "beta" environment is available at beta.WEBSITE_HOST
and it's own API at api.beta.WEBSITE_HOST
.
There is hotreload for the front (with vite), back (with django runserver), and nginx (thanks to a custom script)
Put 0 in the .env file for the DEV
variable
Run the following command :
docker compose -f docker-compose.yml up
To stop the prod environment :
docker compose -f docker-compose.yml down
The dev frontend is available at WEBSITE_HOST
and it's API at api.WEBSITE_HOST
.
Docker can take a lot of disk space with all the images. You have a few options to clean it up:
make clean-all
will remove all the containers and imagesmake clean-custom
will remove all the custom images (the ones we build and not the ones we pull from docker hub)