Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
6698ca09
You need to sign in or sign up before continuing.
Commit
6698ca09
authored
Mar 25, 2017
by
NGPixel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Setup Wizard - Git check
parent
08a1cbfe
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
75 additions
and
25 deletions
+75
-25
agent.js
agent.js
+0
-1
configure.js
assets/js/configure.js
+2
-2
configure.js
client/js/configure.js
+3
-1
configure.js
configure.js
+66
-17
index.pug
views/configure/index.pug
+4
-4
No files found.
agent.js
View file @
6698ca09
...
@@ -183,7 +183,6 @@ db.onReady.then(() => {
...
@@ -183,7 +183,6 @@ db.onReady.then(() => {
timeZone
:
'UTC'
,
timeZone
:
'UTC'
,
runOnInit
:
true
runOnInit
:
true
})
})
})
})
// ----------------------------------------
// ----------------------------------------
...
...
assets/js/configure.js
View file @
6698ca09
"use strict"
;
Vue
.
use
(
VeeValidate
,{
enableAutoClasses
:
!
0
,
classNames
:{
touched
:
"is-touched"
,
untouched
:
"is-untouched"
,
valid
:
"is-valid"
,
invalid
:
"is-invalid"
,
pristine
:
"is-pristine"
,
dirty
:
"is-dirty"
}}),
jQuery
(
document
).
ready
(
function
(
t
){
new
Vue
({
el
:
"main"
,
data
:{
loading
:
!
1
,
state
:
"welcome"
,
syscheck
:{
ok
:
!
1
,
error
:
""
,
results
:[]},
dbcheck
:{
ok
:
!
1
,
error
:
""
},
gitcheck
:{
ok
:
!
1
,
error
:
""
},
final
:{
ok
:
!
1
,
error
:
""
,
results
:[]},
conf
:{
title
:
"Wiki"
,
host
:
"http://"
,
port
:
80
,
lang
:
"en"
,
db
:
"mongodb://localhost:27017/wiki"
,
pathData
:
"./data"
,
pathRepo
:
"./repo"
,
gitUrl
:
""
,
gitBranch
:
"master"
,
gitAuthType
:
"ssh"
,
gitAuthSSHKey
:
""
,
gitAuthUser
:
""
,
gitAuthPass
:
""
,
gitAuthSSL
:
!
0
,
gitSignatureName
:
""
,
gitSignatureEmail
:
""
,
adminEmail
:
""
,
adminPassword
:
""
,
adminPasswordConfirm
:
""
},
considerations
:{
https
:
!
1
,
port
:
!
1
,
localhost
:
!
1
}},
computed
:{
currentProgress
:
function
(){
var
t
=
"0%"
;
switch
(
this
.
state
){
case
"welcome"
:
t
=
"0%"
;
break
;
case
"syscheck"
:
t
=
this
.
syscheck
.
ok
?
"15%"
:
"5%"
;
break
;
case
"general"
:
t
=
"20%"
;
break
;
case
"considerations"
:
t
=
"30%"
;
break
;
case
"db"
:
t
=
"35%"
;
break
;
case
"dbcheck"
:
t
=
this
.
dbcheck
.
ok
?
"50%"
:
"40%"
;
break
;
case
"paths"
:
t
=
"55%"
;
break
;
case
"git"
:
t
=
"60%"
;
break
;
case
"gitcheck"
:
t
=
this
.
gitcheck
.
ok
?
"75%"
:
"65%"
;
break
;
case
"admin"
:
t
=
"80%"
}
return
t
}},
methods
:{
proceedToWelcome
:
function
(
t
){
this
.
state
=
"welcome"
,
this
.
loading
=!
1
},
proceedToSyscheck
:
function
(
t
){
var
e
=
this
;
this
.
state
=
"syscheck"
,
this
.
loading
=!
0
,
e
.
syscheck
=
{
ok
:
!
1
,
error
:
""
,
results
:[]},
_
.
delay
(
function
(){
axios
.
post
(
"/syscheck"
).
then
(
function
(
t
){
t
.
data
.
ok
===!
0
?(
e
.
syscheck
.
ok
=!
0
,
e
.
syscheck
.
results
=
t
.
data
.
results
):(
e
.
syscheck
.
ok
=!
1
,
e
.
syscheck
.
error
=
t
.
data
.
error
),
e
.
loading
=!
1
,
e
.
$nextTick
()}).
catch
(
function
(
t
){
window
.
alert
(
t
.
message
)})},
1
e3
)},
proceedToGeneral
:
function
(
t
){
var
e
=
this
;
e
.
state
=
"general"
,
e
.
loading
=!
1
,
e
.
$nextTick
(
function
(){
e
.
$validator
.
validateAll
(
"general"
)})},
proceedToConsiderations
:
function
(
t
){
this
.
considerations
=
{
https
:
!
_
.
startsWith
(
this
.
conf
.
host
,
"https"
),
port
:
!
1
,
localhost
:
_
.
includes
(
this
.
conf
.
host
,
"localhost"
)},
this
.
state
=
"considerations"
,
this
.
loading
=!
1
},
proceedToDb
:
function
(
t
){
var
e
=
this
;
e
.
state
=
"db"
,
e
.
loading
=!
1
,
e
.
$nextTick
(
function
(){
e
.
$validator
.
validateAll
(
"db"
)})},
proceedToDbcheck
:
function
(
t
){
var
e
=
this
;
this
.
state
=
"dbcheck"
,
this
.
loading
=!
0
,
e
.
dbcheck
=
{
ok
:
!
1
,
error
:
""
},
_
.
delay
(
function
(){
axios
.
post
(
"/dbcheck"
,{
db
:
e
.
conf
.
db
}).
then
(
function
(
t
){
t
.
data
.
ok
===!
0
?
e
.
dbcheck
.
ok
=!
0
:(
e
.
dbcheck
.
ok
=!
1
,
e
.
dbcheck
.
error
=
t
.
data
.
error
),
e
.
loading
=!
1
,
e
.
$nextTick
()}).
catch
(
function
(
t
){
window
.
alert
(
t
.
message
)})},
1
e3
)},
proceedToPaths
:
function
(
t
){
var
e
=
this
;
e
.
state
=
"paths"
,
e
.
loading
=!
1
,
e
.
$nextTick
(
function
(){
e
.
$validator
.
validateAll
(
"paths"
)})},
proceedToGit
:
function
(
t
){
var
e
=
this
;
e
.
state
=
"git"
,
e
.
loading
=!
1
,
e
.
$nextTick
(
function
(){
e
.
$validator
.
validateAll
(
"git"
)})},
proceedToGitCheck
:
function
(
t
){
var
e
=
this
;
this
.
state
=
"gitcheck"
,
this
.
loading
=!
0
,
e
.
dbcheck
=
{
ok
:
!
1
,
error
:
""
},
_
.
delay
(
function
(){
axios
.
post
(
"/gitcheck"
,
e
.
conf
).
then
(
function
(
t
){
t
.
data
.
ok
===!
0
?
e
.
gitcheck
.
ok
=!
0
:(
e
.
gitcheck
.
ok
=!
1
,
e
.
gitcheck
.
error
=
t
.
data
.
error
),
e
.
loading
=!
1
,
e
.
$nextTick
()}).
catch
(
function
(
t
){
window
.
alert
(
t
.
message
)})},
1
e3
)},
proceedToAdmin
:
function
(
t
){
var
e
=
this
;
e
.
state
=
"admin"
,
e
.
loading
=!
1
,
e
.
$nextTick
(
function
(){
e
.
$validator
.
validateAll
(
"admin"
)})},
proceedToFinal
:
function
(
t
){
var
e
=
this
;
e
.
state
=
"final"
,
e
.
loading
=!
0
,
e
.
final
=
{
ok
:
!
1
,
error
:
""
,
results
:[]},
_
.
delay
(
function
(){
axios
.
post
(
"/finalize"
,
e
.
conf
).
then
(
function
(
t
){
t
.
data
.
ok
===!
0
?(
e
.
final
.
ok
=!
0
,
e
.
final
.
results
=
t
.
data
.
results
):(
e
.
final
.
ok
=!
1
,
e
.
final
.
error
=
t
.
data
.
error
),
e
.
loading
=!
1
,
e
.
$nextTick
()}).
catch
(
function
(
t
){
window
.
alert
(
t
.
message
)})},
1
e3
)},
finish
:
function
(
t
){}}})});
"use strict"
;
Vue
.
use
(
VeeValidate
,{
enableAutoClasses
:
!
0
,
classNames
:{
touched
:
"is-touched"
,
untouched
:
"is-untouched"
,
valid
:
"is-valid"
,
invalid
:
"is-invalid"
,
pristine
:
"is-pristine"
,
dirty
:
"is-dirty"
}}),
jQuery
(
document
).
ready
(
function
(
t
){
new
Vue
({
el
:
"main"
,
data
:{
loading
:
!
1
,
state
:
"welcome"
,
syscheck
:{
ok
:
!
1
,
error
:
""
,
results
:[]},
dbcheck
:{
ok
:
!
1
,
error
:
""
},
gitcheck
:{
ok
:
!
1
,
error
:
""
},
final
:{
ok
:
!
1
,
error
:
""
,
results
:[]},
conf
:{
title
:
"Wiki"
,
host
:
"http://"
,
port
:
80
,
lang
:
"en"
,
db
:
"mongodb://localhost:27017/wiki"
,
pathData
:
"./data"
,
pathRepo
:
"./repo"
,
gitUrl
:
""
,
gitBranch
:
"master"
,
gitAuthType
:
"ssh"
,
gitAuthSSHKey
:
""
,
gitAuthUser
:
""
,
gitAuthPass
:
""
,
gitAuthSSL
:
!
0
,
gitSignatureName
:
""
,
gitSignatureEmail
:
""
,
adminEmail
:
""
,
adminPassword
:
""
,
adminPasswordConfirm
:
""
},
considerations
:{
https
:
!
1
,
port
:
!
1
,
localhost
:
!
1
}},
computed
:{
currentProgress
:
function
(){
var
t
=
"0%"
;
switch
(
this
.
state
){
case
"welcome"
:
t
=
"0%"
;
break
;
case
"syscheck"
:
t
=
this
.
syscheck
.
ok
?
"15%"
:
"5%"
;
break
;
case
"general"
:
t
=
"20%"
;
break
;
case
"considerations"
:
t
=
"30%"
;
break
;
case
"db"
:
t
=
"35%"
;
break
;
case
"dbcheck"
:
t
=
this
.
dbcheck
.
ok
?
"50%"
:
"40%"
;
break
;
case
"paths"
:
t
=
"55%"
;
break
;
case
"git"
:
t
=
"60%"
;
break
;
case
"gitcheck"
:
t
=
this
.
gitcheck
.
ok
?
"75%"
:
"65%"
;
break
;
case
"admin"
:
t
=
"80%"
}
return
t
}},
methods
:{
proceedToWelcome
:
function
(
t
){
this
.
state
=
"welcome"
,
this
.
loading
=!
1
},
proceedToSyscheck
:
function
(
t
){
var
e
=
this
;
this
.
state
=
"syscheck"
,
this
.
loading
=!
0
,
e
.
syscheck
=
{
ok
:
!
1
,
error
:
""
,
results
:[]},
_
.
delay
(
function
(){
axios
.
post
(
"/syscheck"
).
then
(
function
(
t
){
t
.
data
.
ok
===!
0
?(
e
.
syscheck
.
ok
=!
0
,
e
.
syscheck
.
results
=
t
.
data
.
results
):(
e
.
syscheck
.
ok
=!
1
,
e
.
syscheck
.
error
=
t
.
data
.
error
),
e
.
loading
=!
1
,
e
.
$nextTick
()}).
catch
(
function
(
t
){
window
.
alert
(
t
.
message
)})},
1
e3
)},
proceedToGeneral
:
function
(
t
){
var
e
=
this
;
e
.
state
=
"general"
,
e
.
loading
=!
1
,
e
.
$nextTick
(
function
(){
e
.
$validator
.
validateAll
(
"general"
)})},
proceedToConsiderations
:
function
(
t
){
this
.
considerations
=
{
https
:
!
_
.
startsWith
(
this
.
conf
.
host
,
"https"
),
port
:
!
1
,
localhost
:
_
.
includes
(
this
.
conf
.
host
,
"localhost"
)},
this
.
state
=
"considerations"
,
this
.
loading
=!
1
},
proceedToDb
:
function
(
t
){
var
e
=
this
;
e
.
state
=
"db"
,
e
.
loading
=!
1
,
e
.
$nextTick
(
function
(){
e
.
$validator
.
validateAll
(
"db"
)})},
proceedToDbcheck
:
function
(
t
){
var
e
=
this
;
this
.
state
=
"dbcheck"
,
this
.
loading
=!
0
,
e
.
dbcheck
=
{
ok
:
!
1
,
error
:
""
},
_
.
delay
(
function
(){
axios
.
post
(
"/dbcheck"
,{
db
:
e
.
conf
.
db
}).
then
(
function
(
t
){
t
.
data
.
ok
===!
0
?
e
.
dbcheck
.
ok
=!
0
:(
e
.
dbcheck
.
ok
=!
1
,
e
.
dbcheck
.
error
=
t
.
data
.
error
),
e
.
loading
=!
1
,
e
.
$nextTick
()}).
catch
(
function
(
t
){
window
.
alert
(
t
.
message
)})},
1
e3
)},
proceedToPaths
:
function
(
t
){
var
e
=
this
;
e
.
state
=
"paths"
,
e
.
loading
=!
1
,
e
.
$nextTick
(
function
(){
e
.
$validator
.
validateAll
(
"paths"
)})},
proceedToGit
:
function
(
t
){
var
e
=
this
;
e
.
state
=
"git"
,
e
.
loading
=!
1
,
e
.
$nextTick
(
function
(){
e
.
$validator
.
validateAll
(
"git"
)})},
proceedToGitCheck
:
function
(
t
){
var
e
=
this
;
this
.
state
=
"gitcheck"
,
this
.
loading
=!
0
,
e
.
gitcheck
=
{
ok
:
!
1
,
results
:[],
error
:
""
},
_
.
delay
(
function
(){
axios
.
post
(
"/gitcheck"
,
e
.
conf
).
then
(
function
(
t
){
t
.
data
.
ok
===!
0
?(
e
.
gitcheck
.
ok
=!
0
,
e
.
gitcheck
.
results
=
t
.
data
.
results
):(
e
.
gitcheck
.
ok
=!
1
,
e
.
gitcheck
.
error
=
t
.
data
.
error
),
e
.
loading
=!
1
,
e
.
$nextTick
()}).
catch
(
function
(
t
){
window
.
alert
(
t
.
message
)})},
1
e3
)},
proceedToAdmin
:
function
(
t
){
var
e
=
this
;
e
.
state
=
"admin"
,
e
.
loading
=!
1
,
e
.
$nextTick
(
function
(){
e
.
$validator
.
validateAll
(
"admin"
)})},
proceedToFinal
:
function
(
t
){
var
e
=
this
;
e
.
state
=
"final"
,
e
.
loading
=!
0
,
e
.
final
=
{
ok
:
!
1
,
error
:
""
,
results
:[]},
_
.
delay
(
function
(){
axios
.
post
(
"/finalize"
,
e
.
conf
).
then
(
function
(
t
){
t
.
data
.
ok
===!
0
?(
e
.
final
.
ok
=!
0
,
e
.
final
.
results
=
t
.
data
.
results
):(
e
.
final
.
ok
=!
1
,
e
.
final
.
error
=
t
.
data
.
error
),
e
.
loading
=!
1
,
e
.
$nextTick
()}).
catch
(
function
(
t
){
window
.
alert
(
t
.
message
)})},
1
e3
)},
finish
:
function
(
t
){}}})});
\ No newline at end of file
\ No newline at end of file
client/js/configure.js
View file @
6698ca09
...
@@ -205,8 +205,9 @@ jQuery(document).ready(function ($) {
...
@@ -205,8 +205,9 @@ jQuery(document).ready(function ($) {
let
self
=
this
let
self
=
this
this
.
state
=
'gitcheck'
this
.
state
=
'gitcheck'
this
.
loading
=
true
this
.
loading
=
true
self
.
db
check
=
{
self
.
git
check
=
{
ok
:
false
,
ok
:
false
,
results
:
[],
error
:
''
error
:
''
}
}
...
@@ -214,6 +215,7 @@ jQuery(document).ready(function ($) {
...
@@ -214,6 +215,7 @@ jQuery(document).ready(function ($) {
axios
.
post
(
'/gitcheck'
,
self
.
conf
).
then
(
resp
=>
{
axios
.
post
(
'/gitcheck'
,
self
.
conf
).
then
(
resp
=>
{
if
(
resp
.
data
.
ok
===
true
)
{
if
(
resp
.
data
.
ok
===
true
)
{
self
.
gitcheck
.
ok
=
true
self
.
gitcheck
.
ok
=
true
self
.
gitcheck
.
results
=
resp
.
data
.
results
}
else
{
}
else
{
self
.
gitcheck
.
ok
=
false
self
.
gitcheck
.
ok
=
false
self
.
gitcheck
.
error
=
resp
.
data
.
error
self
.
gitcheck
.
error
=
resp
.
data
.
error
...
...
configure.js
View file @
6698ca09
...
@@ -15,11 +15,10 @@ module.exports = (port, spinner) => {
...
@@ -15,11 +15,10 @@ module.exports = (port, spinner) => {
const
http
=
require
(
'http'
)
const
http
=
require
(
'http'
)
const
path
=
require
(
'path'
)
const
path
=
require
(
'path'
)
const
Promise
=
require
(
'bluebird'
)
const
Promise
=
require
(
'bluebird'
)
const
fs
=
require
(
'fs-extra'
)
const
fs
=
Promise
.
promisifyAll
(
require
(
'fs-extra'
)
)
const
yaml
=
require
(
'js-yaml'
)
const
yaml
=
require
(
'js-yaml'
)
const
_
=
require
(
'lodash'
)
const
_
=
require
(
'lodash'
)
// ----------------------------------------
// ----------------------------------------
// Define Express App
// Define Express App
// ----------------------------------------
// ----------------------------------------
...
@@ -160,26 +159,76 @@ module.exports = (port, spinner) => {
...
@@ -160,26 +159,76 @@ module.exports = (port, spinner) => {
*/
*/
app
.
post
(
'/gitcheck'
,
(
req
,
res
)
=>
{
app
.
post
(
'/gitcheck'
,
(
req
,
res
)
=>
{
const
exec
=
require
(
'execa'
)
const
exec
=
require
(
'execa'
)
const
url
=
require
(
'url'
)
const
dataDir
=
path
.
resolve
(
ROOTPATH
,
req
.
body
.
pathData
)
const
dataDir
=
path
.
resolve
(
ROOTPATH
,
req
.
body
.
pathData
)
const
gitDir
=
path
.
resolve
(
ROOTPATH
,
req
.
body
.
pathRepo
)
const
gitDir
=
path
.
resolve
(
ROOTPATH
,
req
.
body
.
pathRepo
)
let
results
=
[]
fs
.
ensureDir
(
dataDir
).
then
(()
=>
{
let
urlObj
=
url
.
parse
(
req
.
body
.
gitUrl
)
results
.
push
(
'Data directory path is valid.'
)
if
(
req
.
body
.
gitAuthType
===
'basic'
)
{
return
fs
.
ensureDir
(
gitDir
).
then
(()
=>
{
urlObj
.
auth
=
req
.
body
.
gitAuthUser
+
':'
+
req
.
body
.
gitAuthPass
results
.
push
(
'Git directory path is valid.'
)
}
return
true
const
gitRemoteUrl
=
url
.
format
(
urlObj
)
})
}).
then
(()
=>
{
Promise
.
mapSeries
([
return
exec
.
stdout
(
'git'
,
[
'init'
],
{
cwd
:
gitDir
}).
then
(
result
=>
{
()
=>
{
results
.
push
(
'Git local repository initialized.'
)
return
fs
.
ensureDirAsync
(
dataDir
).
return
(
'Data directory path is valid.'
)
return
true
},
})
()
=>
{
}).
then
(()
=>
{
return
fs
.
ensureDirAsync
(
gitDir
).
return
(
'Git directory path is valid.'
)
return
res
.
json
({
ok
:
true
,
results
})
},
()
=>
{
return
exec
.
stdout
(
'git'
,
[
'init'
],
{
cwd
:
gitDir
}).
then
(
result
=>
{
return
'Local git repository has been initialized.'
})
},
()
=>
{
return
exec
.
stdout
(
'git'
,
[
'config'
,
'--local'
,
'user.name'
,
req
.
body
.
gitSignatureName
],
{
cwd
:
gitDir
}).
then
(
result
=>
{
return
'Git Signature Name has been set successfully.'
})
},
()
=>
{
return
exec
.
stdout
(
'git'
,
[
'config'
,
'--local'
,
'user.email'
,
req
.
body
.
gitSignatureEmail
],
{
cwd
:
gitDir
}).
then
(
result
=>
{
return
'Git Signature Name has been set successfully.'
})
},
()
=>
{
return
exec
.
stdout
(
'git'
,
[
'config'
,
'--local'
,
'--bool'
,
'http.sslVerify'
,
req
.
body
.
gitAuthSSL
],
{
cwd
:
gitDir
}).
then
(
result
=>
{
return
'Git SSL Verify flag has been set successfully.'
})
},
()
=>
{
if
(
req
.
body
.
gitAuthType
===
'ssh'
)
{
return
exec
.
stdout
(
'git'
,
[
'config'
,
'--local'
,
'core.sshCommand'
,
'ssh -i "'
+
req
.
body
.
gitAuthSSHKey
+
'" -o StrictHostKeyChecking=no'
],
{
cwd
:
gitDir
}).
then
(
result
=>
{
return
'Git SSH Private Key path has been set successfully.'
})
}
else
{
return
false
}
},
()
=>
{
return
exec
.
stdout
(
'git'
,
[
'remote'
,
'remove'
,
'origin'
],
{
cwd
:
gitDir
}).
catch
(
err
=>
{
if
(
_
.
includes
(
err
.
message
,
'No such remote'
))
{
return
true
}
else
{
throw
err
}
}).
then
(()
=>
{
return
exec
.
stdout
(
'git'
,
[
'remote'
,
'add'
,
'origin'
,
gitRemoteUrl
],
{
cwd
:
gitDir
}).
then
(
result
=>
{
return
'Git Remote was added successfully.'
})
})
},
()
=>
{
return
exec
.
stdout
(
'git'
,
[
'pull'
,
'origin'
,
req
.
body
.
gitBranch
],
{
cwd
:
gitDir
}).
then
(
result
=>
{
return
'Git Pull operation successful.'
})
}
],
step
=>
{
return
step
()
}).
then
(
results
=>
{
return
res
.
json
({
ok
:
true
,
results
:
_
.
without
(
results
,
false
)
})
}).
catch
(
err
=>
{
}).
catch
(
err
=>
{
res
.
json
({
ok
:
false
,
error
:
err
.
message
})
let
errMsg
=
(
err
.
stderr
)
?
err
.
stderr
.
replace
(
/
(
error:|warning:|fatal:
)
/gi
,
''
).
replace
(
/
\s
+/g
,
' '
)
:
err
.
message
res
.
json
({
ok
:
false
,
error
:
errMsg
})
})
})
})
})
...
...
views/configure/index.pug
View file @
6698ca09
...
@@ -252,17 +252,17 @@ html
...
@@ -252,17 +252,17 @@ html
.column(v-show='conf.gitAuthType === "basic"')
.column(v-show='conf.gitAuthType === "basic"')
p.control.is-fullwidth
p.control.is-fullwidth
label.label Username
label.label Username
input(type='text', v-model='conf.git
Url
')
input(type='text', v-model='conf.git
AuthUser
')
span.desc The username for the remote git connection.
span.desc The username for the remote git connection.
.column(v-show='conf.gitAuthType === "basic"')
.column(v-show='conf.gitAuthType === "basic"')
p.control.is-fullwidth
p.control.is-fullwidth
label.label Password
label.label Password
input(type='password', v-model='conf.git
Url
')
input(type='password', v-model='conf.git
AuthPass
')
span.desc The password for the remote git connection.
span.desc The password for the remote git connection.
.column(v-show='conf.gitAuthType === "ssh"')
.column(v-show='conf.gitAuthType === "ssh"')
p.control.is-fullwidth
p.control.is-fullwidth
label.label Private Key location
label.label Private Key location
input(type='text', placeholder='e.g. /etc/wiki/keys/git.pem')
input(type='text', placeholder='e.g. /etc/wiki/keys/git.pem'
, v-model='conf.gitAuthSSHKey'
)
span.desc The full path to the private key on disk.
span.desc The full path to the private key on disk.
section.columns
section.columns
.column
.column
...
@@ -277,7 +277,7 @@ html
...
@@ -277,7 +277,7 @@ html
span.desc The email to use when pushing commits to the git repository.
span.desc The email to use when pushing commits to the git repository.
.panel-footer
.panel-footer
.progress-bar: div(v-bind:style='{width: currentProgress}')
.progress-bar: div(v-bind:style='{width: currentProgress}')
button.button.is-indigo.is-outlined(v-on:click='proceedTo
Db
', v-bind:disabled='loading') Back
button.button.is-indigo.is-outlined(v-on:click='proceedTo
Paths
', v-bind:disabled='loading') Back
button.button.is-indigo.is-outlined(v-on:click='proceedToAdmin', v-bind:disabled='loading') Skip this step
button.button.is-indigo.is-outlined(v-on:click='proceedToAdmin', v-bind:disabled='loading') Skip this step
button.button.is-indigo(v-on:click='proceedToGitCheck', v-bind:disabled='loading || errors.any("git")') Continue
button.button.is-indigo(v-on:click='proceedToGitCheck', v-bind:disabled='loading || errors.any("git")') Continue
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment