https://docs.spring.io/spring-boot/docs/current/reference/html/howto-traditional-deployment.html
The mechanism is based on Spring boot properties
| @ECHO OFF | |
| :: ce batch pour windows s'utilise avec un environment.yml qui sert pour conda et ses dépendences | |
| :: notez qu'il faut specifier le chemin vers le script conda ici | |
| set conda_path=C:\Perso\Dev\Python\anaconda3\Scripts | |
| :: extraction du nom de l'environnement virtuel pour vérifier s'il existe ou pas | |
| set /p yaml_env_name_line=< environment.yml | |
| set env_name=%yaml_env_name_line:~6% | |
| %conda_path%\conda.exe env list | find /i "%env_name%" |
| -module(pi). | |
| -author("Yvan"). | |
| -export([approximatePi/2,startCalculate/1,mapApproximatePi/0,reduce/3]). | |
| mapApproximatePi() -> | |
| receive | |
| {Level, Range, Reducer} -> | |
| Approx = approximatePi(Level,Range), | |
| %io:format("approximate ! ~w = (~w,~w) :~w~n",[self(),Level,Range,Approx]), |
| -module(city). | |
| -include("city.hrl"). | |
| -author("Yvan"). | |
| %% ------------------------------------------------------------------ | |
| %% API Function Exports | |
| %% ------------------------------------------------------------------ | |
| -export([new/0,plague/1,preturnPopulation/1,preturnHealth/1]). |
https://docs.spring.io/spring-boot/docs/current/reference/html/howto-traditional-deployment.html
The mechanism is based on Spring boot properties