Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
K
karname-ui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Reza Sahebgharan
karname-ui
Commits
dc4e4399
Commit
dc4e4399
authored
Nov 18, 2019
by
Reza Sahebgharan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs(update installation guide): update installation guide
parent
e31d9c57
Pipeline
#597
passed with stages
in 2 minutes and 59 seconds
Changes
4
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
56 additions
and
2 deletions
+56
-2
platforms
.meteor/platforms
+2
-1
README.md
README.md
+30
-0
mobile-config.js
mobile-config.js
+9
-0
webpack.config.js
webpack.config.js
+15
-1
No files found.
.meteor/platforms
View file @
dc4e4399
server
android
browser
browser
server
README.md
View file @
dc4e4399
## Prerequisite
-
install docker for desktop on windows
-
go to icon tray on windows and right click on docker icon, then click on 'settings'
-
on the settings window, open the 'Daemon' tab and turn on 'advanced' option
-
a configuration setting as bellow must be openned in the Daemon Tab:
```
{
"registry-mirrors": [],
"insecure-registries": [],
"debug": true,
"experimental": false
}
```
change it to the following and click on apply button on the Daemon Tab:
```
{
"registry-mirrors": [],
"insecure-registries": [
"repo.marcopacs.com"
],
"debug": true,
"experimental": false
}
```
## Installation Guide
## Installation Guide
-
create a folder in the production server for example in the drive C(ex: c:/build)
-
create a folder in the production server for example in the drive C(ex: c:/build)
...
@@ -37,6 +66,7 @@ networks:
...
@@ -37,6 +66,7 @@ networks:
external:
external:
name: nat
name: nat
```
```
-
navigate to Drive C and create a folder called "data"
-
navigate to Drive C and create a folder called "data"
-
navigate to C:/data and create a folder called "db"
-
navigate to C:/data and create a folder called "db"
...
...
mobile-config.js
0 → 100644
View file @
dc4e4399
App
.
info
({
id
:
'marcopacs.karname.ir'
,
name
:
'karname-app'
,
version
:
"0.0.1"
})
App
.
setPreference
(
'android-targetSdkVersion'
,
'19'
)
App
.
accessRule
(
'*'
);
\ No newline at end of file
webpack.config.js
View file @
dc4e4399
...
@@ -65,7 +65,21 @@ const clientConfig = {
...
@@ -65,7 +65,21 @@ const clientConfig = {
test
:
/
\.
vue$/
,
test
:
/
\.
vue$/
,
loader
:
'vue-loader'
,
loader
:
'vue-loader'
,
options
:
{
options
:
{
loaders
:
{}
compilerOptions
:
{
modules
:
[{
preTransformNode
(
astEl
)
{
if
(
process
.
env
.
NODE_ENV
===
"production"
)
{
const
{
attrsMap
,
attrsList
}
=
astEl
;
if
(
attrsMap
[
"data-cy"
])
{
delete
attrsMap
[
"data-cy"
];
const
index
=
attrsList
.
findIndex
(
x
=>
x
.
name
===
'data-cy'
)
attrsList
.
splice
(
index
,
1
);
}
}
return
astEl
;
}
}]
}
// other vue-loader options go here
// other vue-loader options go here
}
}
},
},
...
...
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