diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 12b64ef..c7eccb4 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -15,7 +15,7 @@ module.exports = { }] ], port: 3030, - base: '/docs/', + base: '/edu-dis-labs/', theme: 'cool', // dest: 'dist', head: [ @@ -74,10 +74,10 @@ module.exports = { lastUpdated: 'Останнє оновлення', // string | boolean // Assumes GitHub. Can also be a full GitLab url. - repo: 'https://github.com/boldak/edu-dis-labs', + repo: 'http://139.162.162.130:3000/hasslesstech/edu-dis-labs', // Customising the header label // Defaults to "GitHub"/"GitLab"/"Bitbucket" depending on `themeConfig.repo` - repoLabel: 'Github', + repoLabel: 'Gitea', // Optional options for generating "Edit this page" link @@ -110,4 +110,4 @@ module.exports = { md.use(require('markdown-it-admonition')) } } -} \ No newline at end of file +} diff --git a/package.json b/package.json index a4dc595..d16b4a8 100644 --- a/package.json +++ b/package.json @@ -3,11 +3,11 @@ "version": "2.1.0", "main": "index.js", "description": "Databases course work template", - "repository": "https://github.com/boldak/dis-edu", + "repository": "http://139.162.162.130:3000/hasslesstech/edu-dis-labs", "author": "Andrey Boldak ", "license": "ECL 2.0", "scripts": { - "test":"jest", + "test": "jest", "docs:api": "jsdoc2md src/**/*.js > docs/api/README.md", "docs:dev": "npm run docs:api && npx vuepress dev docs", "docs:build": "npm run docs:api && npx vuepress build docs", @@ -23,5 +23,4 @@ "jest": "^27.1.0", "jsdoc-to-markdown": "^7.0.1" } - } diff --git a/publish.sh b/publish.sh old mode 100644 new mode 100755 index 8dcaea4..68af665 --- a/publish.sh +++ b/publish.sh @@ -14,12 +14,12 @@ cd docs/.vuepress/dist git init git add -A -git commit -m 'deploy' +git commit -m '[automated]: pushing regenerated documentation' # if you are deploying to https://.github.io # git push -f git@github.com:boldak/.github.io.git master # if you are deploying to https://.github.io/ -git push -f https://github.com/boldak/dis-edu.git master:gh-pages +git push -f http://10.1.1.1:3000/hasslesstech/edu-dis-labs master:gh-pages cd -