Moving files around
21
.space.kts
Normal file
@ -0,0 +1,21 @@
|
||||
job("Deploy") {
|
||||
container(displayName = "Build and install", image = "openjdk:11") {
|
||||
kotlinScript { api ->
|
||||
// here can be your complex logic
|
||||
api.gradlew("installDist")
|
||||
}
|
||||
}
|
||||
container(displayName = "Deploy", image = "openjdk:11") {
|
||||
env["HOST"] = Params("sciprog-host")
|
||||
env["ID"] = Secrets("sciprog-webmaster-id")
|
||||
|
||||
shellScript {
|
||||
interpreter = "/bin/bash"
|
||||
content = """
|
||||
echo Hello
|
||||
echo World!
|
||||
"""
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -3,11 +3,10 @@ import ru.mipt.npm.gradle.KScienceVersions
|
||||
plugins {
|
||||
id("ru.mipt.npm.gradle.project")
|
||||
id("ru.mipt.npm.gradle.jvm")
|
||||
id("org.hidetake.ssh") version "2.10.1"
|
||||
application
|
||||
}
|
||||
|
||||
repositories{
|
||||
repositories {
|
||||
mavenLocal()
|
||||
}
|
||||
|
||||
@ -45,8 +44,8 @@ kotlin {
|
||||
explicitApi = org.jetbrains.kotlin.gradle.dsl.ExplicitApiMode.Disabled
|
||||
}
|
||||
|
||||
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>{
|
||||
kotlinOptions{
|
||||
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
||||
kotlinOptions {
|
||||
freeCompilerArgs = freeCompilerArgs + "-Xcontext-receivers"
|
||||
}
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ language: en
|
||||
image: images/people/nozik_2.png
|
||||
---
|
||||
|
||||
** Director of the centre **
|
||||
**Director of the centre**
|
||||
|
||||
* PhD in particle physics.
|
||||
* Director of [Scientific Programming Centre](/).
|
||||
|
Before Width: | Height: | Size: 178 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 76 KiB |
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 88 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 68 KiB |
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
BIN
data/magprog/images/mentors/Nizovtseva.jpg
Normal file
After Width: | Height: | Size: 56 KiB |
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 98 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 57 KiB |
Before Width: | Height: | Size: 148 KiB After Width: | Height: | Size: 148 KiB |
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 148 KiB After Width: | Height: | Size: 148 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 187 KiB After Width: | Height: | Size: 187 KiB |
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 45 KiB |
Before Width: | Height: | Size: 6.1 KiB After Width: | Height: | Size: 6.1 KiB |
Before Width: | Height: | Size: 89 KiB After Width: | Height: | Size: 89 KiB |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 9.9 KiB After Width: | Height: | Size: 9.9 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 7.6 KiB |
Before Width: | Height: | Size: 75 KiB After Width: | Height: | Size: 75 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 134 KiB After Width: | Height: | Size: 134 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
@ -273,10 +273,15 @@ internal fun Application.spcMaster(context: Context, dataPath: Path, prefix: Str
|
||||
routing {
|
||||
route(prefix) {
|
||||
with(magProgPageContext) {
|
||||
static {
|
||||
static{
|
||||
files(dataPath.resolve("assets").toFile())
|
||||
|
||||
static("images") {
|
||||
files(dataPath.resolve("images").toFile())
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
get {
|
||||
call.respondHtml {
|
||||
val sections = listOf<MagProgSection>(
|
||||
|