-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.js
123 lines (122 loc) · 3.32 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
import colors from "vuetify/es5/util/colors.js"
export default {
env: { NODE_ENV: "dev" },
repo: "IEA-Paris/PPIAS",
name: "PPIAS",
full_name: "Proceedings of the Paris Institute for Advanced Study", // set to false if there is none
full_name_html:
"Proceedings of the Paris Institute<br>for Advanced Study", // set to false if there is none
domain: "paris", //> paris.pias.science
address: "17, Quai d'Anjou 75004 PARIS - FRANCE",
phone: "+33(0)1 56 81 00 52",
email: "publications@paris-iea.fr",
subtitle: "Open source publishing platform for open science.",
description: "Open source publishing platform for open science.",
splash_title: "Open source publishing platform for open science.",
recaptcha: "6Lc_xuUUAAAAALwowUq0cC0wFtFnZ2NCi3UH4i1j",
logo: "icon.png",
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://paris.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: true,
},
},
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://a329c0ed448543d098d4c1956b6bffb4@sentry.paris-ias.io/13",
},
ackee: {
domain: "0406b6c9-6dfc-44de-bb13-83bc0607cb14",
server: "https://ackee.paris-ias.io/",
},
zenodo: {
token: process.env.ZENODO_TOKEN,
sandboxToken: process.env.ZENODO_SANDBOX_TOKEN,
sandbox: false,
community: "proceedings-of-the-institutes-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: [],
},
},
}