@cerema/cadriciel 1.3.5 → 1.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli/global/init.js +4 -3
- package/package.json +1 -1
package/cli/global/init.js
CHANGED
|
@@ -129,7 +129,7 @@ module.exports = (args) => {
|
|
|
129
129
|
}
|
|
130
130
|
|
|
131
131
|
exec(
|
|
132
|
-
'git init && git add --all && git commit -m "first commit"',
|
|
132
|
+
'git init && git add --all && git commit -m "first commit" && git checkout -b dev',
|
|
133
133
|
(errorGit) => {
|
|
134
134
|
if (errorGit) {
|
|
135
135
|
spinner.fail('Error occurred during git operations:', errorGit);
|
|
@@ -141,7 +141,8 @@ module.exports = (args) => {
|
|
|
141
141
|
`\n──────────────────────────────────────────────────────────────
|
|
142
142
|
|
|
143
143
|
Pour lancer l'environnement local de développement :
|
|
144
|
-
|
|
144
|
+
|
|
145
|
+
${chalk.magenta(' 📦 nécessite docker et docker-compose\n')}
|
|
145
146
|
|
|
146
147
|
cd ${chalk.green(name)}
|
|
147
148
|
${chalk.cyan('cad start')} .............. 🚀 ${chalk.bold(
|
|
@@ -154,7 +155,7 @@ module.exports = (args) => {
|
|
|
154
155
|
|
|
155
156
|
👉 https://dev.siipro.fr 👈
|
|
156
157
|
|
|
157
|
-
|
|
158
|
+
──────────────────────────────────────────────────────────────\n`
|
|
158
159
|
);
|
|
159
160
|
}
|
|
160
161
|
);
|