6 Commits

Author SHA1 Message Date
1f34a326ad Feat: activate pdf-img
All checks were successful
continuous-integration/drone/push Build is passing
2020-08-25 10:43:02 +02:00
d6e575ea45 Fix: link to projets-informatiques
All checks were successful
continuous-integration/drone/push Build is passing
2020-08-16 10:33:41 +02:00
438251f75d Feat: remove link to bopytex and mapytex
All checks were successful
continuous-integration/drone/push Build is passing
2020-08-16 10:28:43 +02:00
b720e17c61 Fix: add requirements
All checks were successful
continuous-integration/drone/push Build is passing
2020-08-07 18:27:22 +02:00
02dbc94f31 Feat: add .drone.yml
Some checks failed
continuous-integration/drone/push Build is failing
2020-08-07 18:24:12 +02:00
dd92f1a77e Feat: adapt to year 2019-2020 2020-08-07 18:22:40 +02:00
6 changed files with 52 additions and 8 deletions

30
.drone.yml Normal file
View File

@@ -0,0 +1,30 @@
kind: pipeline
name: Opytex 2020-2021
type: docker
trigger:
branch:
- 2020-2021
steps:
- name: Deploy
image: python:3.8-alpine
commands:
- apk add --no-cache openssh-client ca-certificates bash rsync git imagemagick-dev imagemagick
- git submodule init
- git submodule update
- git clone https://git.opytex.org/lafrite/2020-2021.git content
- pip install --no-cache-dir -r requirements.txt
- export MAGICK_HOME=/usr
- pelican ./content/ -o output -s publishconf.py --relative-urls
- eval `ssh-agent -s`
- echo "$SSH_KEY" | ssh-add -
- mkdir -p ~/.ssh
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
- ssh sshcontent@91.121.90.228 'mkdir -p ~/opytex.org/www/enseignements/2020-2021/'
- rsync -rv --delete -e "ssh -p 22" ./output/ sshcontent@91.121.90.228:~/opytex.org/www/enseignements/2020-2021/ --checksum
environment:
SSH_KEY:
from_secret: sshcontent-key

1
.gitignore vendored
View File

@@ -6,3 +6,4 @@ content
__pycache__
*.pid
venv/
.vim/

View File

@@ -10,9 +10,8 @@ MENUITEMS = [
#("Dernières modifications", SITEURL+"blog_index.html"),
("Accueil", "/"),
("Contenus de cours", "/pages/tout-sur-mes-cours.html"),
('blog', '/blog_index.html'),
('Opytex', "/opytex/"),
("pyMath", "/pymath/"),
('Blog', '/blog_index.html'),
('Informatique', "/pages/projets-informatiques.html"),
('À propos', "/pages/a-propos.html"),
]

View File

@@ -9,8 +9,7 @@ from globalconf import *
AUTHOR = 'Benjamin Bertrand'
SITENAME = 'OpyTex'
SITETITLE = 'OpyTex'
SITESUBTITLE = "DEV"
#SITEURL = 'https://0.0.0.0:8000/enseignements/DEV'
SITESUBTITLE = "2020-2021"
SITEURL = ''
CC_LICENSE_COMMERCIAL = True
@@ -43,7 +42,7 @@ PLUGINS = [
"pelican-page-hierarchy",
"always_modified",
"tag_cloud",
# 'pdf-img',
'pdf-img',
]
ALWAYS_MODIFIED = True

View File

@@ -11,7 +11,7 @@ sys.path.append(os.curdir)
from pelicanconf import *
# If your site is available via HTTPS, make sure SITEURL begins with https://
SITEURL = 'n'
SITEURL = 'https://opytex.org/enseignements/2020-2021/'
RELATIVE_URLS = False
FEED_ALL_ATOM = 'feeds/all.atom.xml'

15
requirements.txt Normal file
View File

@@ -0,0 +1,15 @@
beautifulsoup4==4.9.1
blinker==1.4
bs4==0.0.1
docutils==0.16
feedgenerator==1.9.1
Jinja2==2.11.2
MarkupSafe==1.1.1
pelican==4.2.0
Pygments==2.6.1
python-dateutil==2.8.1
pytz==2020.1
six==1.15.0
soupsieve==2.0.1
Unidecode==1.1.1
Wand==0.6.2