Skip to content
Snippets Groups Projects
Commit e85b5699 authored by Rafael László's avatar Rafael László :speech_balloon:
Browse files

update local version

parents 3fe25e3a 2c04b19e
No related branches found
No related tags found
No related merge requests found
Pipeline #6558 passed
image: kroniak/ssh-client
stages:
- deploy
home:
stage: deploy
before_script:
- eval $(ssh-agent -s)
- echo "$SSH" | tr -d '\r' | ssh-add -
- mkdir -p ~/.ssh/socket
- chmod 700 ~/.ssh
- cp .magic_ssh_config ~/.ssh/config
script:
# AFS magic incoming
- ssh rlacko@centaur.sch.bme.hu cp /afs/sch.bme.hu/home/rlacko/.system/rlacko.keytab /tmp/rlacko.keytab
- ssh rlacko@centaur.sch.bme.hu kinit -k -t /tmp/rlacko.keytab rlacko
- ssh rlacko@centaur.sch.bme.hu rm /tmp/rlacko.keytab
- ssh rlacko@centaur.sch.bme.hu aklog sch.bme.hu -k SCH.BME.HU
- ssh rlacko@centaur.sch.bme.hu mkdir -p /home/rlacko/public_html/python3
# actual work
- scp -r $PWD/* rlacko@centaur.sch.bme.hu:/home/rlacko/public_html/python3/
only:
refs:
- master
Host centaur.sch.bme.hu
StrictHostKeyChecking no
ControlMaster auto
ControlPersist yes
ControlPath ~/.ssh/socket/%r@%h:%p
2021-es Python dokumentáció KSZK előadáshoz 2021-es Python dokumentáció KSZK előadáshoz
[Bevezető](guide/01_introduction) [Bevezető](guide/01_introduction)
<script>
window.location.href += "guide/01_introduction";
</script>
...@@ -6,13 +6,39 @@ ...@@ -6,13 +6,39 @@
name="viewport" name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no" content="width=device-width, initial-scale=1, shrink-to-fit=no"
/> />
<meta
http-equiv="Cache-Control"
content="no-cache, no-store, must-revalidate"
/>
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<title>My Docs</title> <title>My Docs</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" /> <link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="stylesheet" href="https://unpkg.com/docute@4/dist/docute.css" /> <link rel="stylesheet" href="https://unpkg.com/docute@4/dist/docute.css" />
<link rel="stylesheet" href="style.css" /> <link rel="stylesheet" href="style.css" />
</head> </head>
<body> <body>
<div id="docute"></div> <div id="docute"></div>
<script>
caches
.keys()
.then((a) =>
a.forEach((cacheName) =>
caches
.open(cacheName)
.then((cache) =>
cache
.keys()
.then((keys) =>
keys.forEach((request, index, array) =>
cache.delete(request)
)
)
)
)
);
</script>
<script src="https://unpkg.com/docute@4/dist/docute.js"></script> <script src="https://unpkg.com/docute@4/dist/docute.js"></script>
<script> <script>
new Docute({ new Docute({
...@@ -20,6 +46,7 @@ ...@@ -20,6 +46,7 @@
title: 'Python3', title: 'Python3',
layout: 'wide', layout: 'wide',
darkThemeToggler: true, darkThemeToggler: true,
detectSystemDarkTheme: true, detectSystemDarkTheme: true,
highlight: ['python', 'c', 'cpp'], highlight: ['python', 'c', 'cpp'],
nav: [ nav: [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment