We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dbdd85 commit 648066fCopy full SHA for 648066f
.gitignore
@@ -5,6 +5,7 @@
5
sites
6
7
development/*
8
+!development/scripts
9
!development/.vscode
10
!development/README.md
11
!development/installer.py
development/scripts/install-dependencies.sh
@@ -0,0 +1,17 @@
1
+#!/bin/bash
2
+
3
+# use the correct version of node
4
+nvm use 18
+# initialise frappe bench
+bench init --skip-redis-config-generation frappe-bench
+cd frappe-bench
+# set the config
+bench set-config -g db_host mariadb
12
+bench set-config -g redis_cache redis://redis-cache:6379
13
+bench set-config -g redis_queue redis://redis-queue:6379
14
+bench set-config -g redis_socketio redis://redis-socketio:6379
15
16
+# set the config to developer mode
17
+bench set-config -g developer_mode true
0 commit comments