Skip to content

Commit

Permalink
feat: Move main site to https://vsp.berlin/simwrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
billyc committed Jul 22, 2021
1 parent 4871684 commit 5782022
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<meta content="From the VSP team at TU-Berlin" name="twitter:description" />
<meta content="From the VSP team at TU-Berlin" name="og:description" />

<meta content="https://simwrapper.github.io/" name="og:url" />
<meta content="https://vsp.berlin/simwrapper" name="og:url" />
<meta
content="https://github.com/matsim-vsp/covid-sim/raw/master/src/assets/images/v1-thumb.png"
name="og:image"
Expand All @@ -41,9 +41,9 @@
})()
</script>

<link href="/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png" />
<link href="/simwrapper/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png" />

<link href="/css/font-awesome-5.7.1.css" rel="stylesheet" />
<link href="/simwrapper/css/font-awesome-5.7.1.css" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap"
Expand Down
4 changes: 2 additions & 2 deletions scripts/deploy-ghpages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ git init .
git add . && git commit -m "gh-pages"

echo --- PUSHING TO GITHUB ---
git remote add origin git@github.com:simwrapper/simwrapper.github.io.git
git push --force origin master:master
git remote add origin git@github.com:matsim-vsp/simwrapper.git
git push --force origin master:gh-pages

4 changes: 2 additions & 2 deletions src/fileSystemConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ const fileSystems: FileSystemConfig[] = [
description: 'Run mini-file-server to browse files on your PC',
baseURL: 'http://localhost:8000',
needPassword: false,
thumbnail: '/images/thumb-localfiles.jpg',
thumbnail: '/simwrapper/images/thumb-localfiles.jpg',
},
{
name: 'Public-SVN',
slug: 'public-svn',
description: 'Simulation results from VSP at TU-Berlin',
baseURL: 'https://svn.vsp.tu-berlin.de/repos/public-svn/matsim/scenarios/countries',
needPassword: false,
thumbnail: '/images/thumb-chart.jpg',
thumbnail: '/simwrapper/images/thumb-chart.jpg',
skipList: ['episim/battery'],
},
// {
Expand Down
2 changes: 1 addition & 1 deletion vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const path = require('path')
const ThreadsPlugin = require('threads-plugin')

module.exports = {
publicPath: '/',
publicPath: '/simwrapper',
productionSourceMap: false,
chainWebpack: config => {
/*
Expand Down

0 comments on commit 5782022

Please sign in to comment.