-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
126 lines (125 loc) · 3.47 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
import colors from "vuetify/es5/util/colors.js"
export default {
env: { NODE_ENV: "dev" },
repo: "IEA-Paris/PFIAS",
name: "PFIAS",
domain: "france", //> france.pias.science
full_name: "Proceedings of the French Institutes for Advanced Study", // set to false if there is none
full_name_html:
"Proceedings of the French Institutes<br>for Advanced Study", // set to false if there is none
address: "17, Quai d'Anjou 75004 PARIS - FRANCE",
phone: "+33(0)1 56 81 00 52",
email: "[email protected]",
subtitle: "Open source publishing platform for open science.",
logo: "icon.png",
logo_alt: "icon_w.png",
description: "Open source publishing platform for open science.",
splash_title: "Open source publishing platform for open science.",
recaptcha: "6Lc_xuUUAAAAALwowUq0cC0wFtFnZ2NCi3UH4i1j",
acm_certificate_arn:
"arn:aws:acm:us-east-1:720928668014:certificate/af936a71-516a-40fc-8187-121807242a41",
location: {
origin:
"https://www.openstreetmap.org/export/embed.html?bbox=2.356580793857575%2C48.850586483414915%2C2.361644804477692%2C48.85278204589751&layer=mapnik&marker=48.851684276691216%2C2.359112799167633",
target:
"https://www.openstreetmap.org/?mlat=48.85168&mlon=2.35911#map=19/48.85168/2.35911",
},
// graphqlEndpoint:
// 'https://mz3e6z5nlngvdls3zh3possona.appsync-api.eu-west-2.amazonaws.com/graphql',
// graphqlApiKey: 'da2-eb5bkfhsvbdz3mexfykmkwjka4',
keywords: "open source, open science, science, vuejs, nuxt, vuetify, vuex",
url: "https://france.pias.science",
lang: {
default: "en",
locales: [
{
code: "fr",
iso: "fr-FR",
name: "French",
file: "fr.json",
dir: "ltr",
},
{
code: "en",
iso: "en-US",
name: "English",
file: "en.json",
dir: "ltr",
},
],
},
// TODO declare the features that should be enabled to customize the website & enforce them
features: {
generate: {
pdf: true,
thumbnails: true,
tableOfContent: true,
bibliography: true,
},
disseminate: {
Zenodo: false,
},
},
theme: {
loading: "red",
dark: false,
themes: {
light: {
primary: "#2196f3",
secondary: "#424242",
accent: "#82B1FF",
error: "#FF5252",
info: "#2196F3",
success: "#4CAF50",
warning: "#FFC107",
},
dark: {
primary: "#2196f3",
secondary: "#424242",
accent: "#82B1FF",
error: "#FF5252",
info: "#2196F3",
success: "#4CAF50",
warning: "#FFC107",
},
},
},
identifier: {
ISSN: "2826-2832",
},
modules: {
sentry: {
dsn: "https://[email protected]/27",
},
ackee: {
domain: "cfe2c3ce-f188-4b37-807a-f3839a49e040",
server: "https://ackee.paris-ias.io/",
},
zenodo: {
token: process.env.ZENODO_TOKEN,
sandboxToken: process.env.ZENODO_SANDBOX_TOKEN,
sandbox: true,
community: "proceedings-of-the-insitutes-for-advanced-studies",
},
image: {
domains: [
"https://picsum.photos",
// snipcart.nuxtjs.org',
"source.unsplash.com",
],
},
deepl: {
key: process.env.DEEPL_KEY,
},
fonts: {
families: {
"Bodoni Moda": [500, 700],
"Open Sans": [500, 700],
},
},
bibliography: {
defaultStyle: "APA",
styles: [],
},
},
}