This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<BCard> | |
<BCardHeader> | |
<BCardTitle><b class="fa fa-user"></b> Connexion</BCardTitle> | |
</BCardHeader> | |
<BCardBody> | |
<BForm ref="form" @submit.prevent="userLogin"> | |
<BFormGroup | |
id="id-username-group" | |
label="Nom d'utilisateur" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
auth: { | |
strategies: { | |
local: { | |
scheme: 'refresh', | |
token: { | |
property: 'access', | |
data: 'access', | |
maxAge: 60 * 30 // 30 minutes | |
}, | |
refreshToken: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<Header /> | |
<main> | |
<Nuxt /> | |
</main> | |
<Footer /> | |
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Settings for PROD environment */ | |
const common = require('./webpack.common') | |
const merge = require('webpack-merge') | |
const BundleTracker = require('webpack-bundle-tracker') | |
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin') | |
const path = require('path') | |
const TerserPlugin = require('terser-webpack-plugin') | |
const config = merge(common, { | |
mode: 'production', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Common webpack settings for app | |
* */ | |
const webpack = require('webpack') | |
const path = require('path') | |
const MomentLocaleWebpackPlugin = require('moment-locales-webpack-plugin') | |
const NODE_ENV = process.env.NODE_ENV | |
const BundleTracker = require('webpack-bundle-tracker') | |
const VueLoaderPlugin = require('vue-loader/lib/plugin') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="infos container"> | |
<transition name="anim-fade-in"> | |
<question | |
ref="question" | |
v-show="! isDone" | |
@done="onDone" | |
:question="question" | |
:debug="debug" /> | |
</transition> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from 'vue' | |
import { IconsPlugin, LayoutPlugin } from 'bootstrap-vue' | |
const Actions = require('./components/Actions.vue').default | |
Vue.use(LayoutPlugin) | |
Vue.use(IconsPlugin) | |
new Vue( | |
{ | |
components: {Actions} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Celery workers for **{{ project_name }}** | |
Documentation=http://gitlab.ville.tg/fguerin/intranet_wagtail/wikis/celery-settings | |
Requires=redis-server.service apache2.service mysql.service | |
[Service] | |
Type=simple | |
User={{ username }} | |
Group={{ apache_default_group }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# RTMP settings | |
rtmp_auto_push on; | |
rtmp { | |
server { | |
listen 1935; | |
chunk_size 4096; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resolveManifsForLieu(payload) { | |
const $vue = this | |
$vue.manifList = [] | |
DEBUG_SEARCH && console.debug( | |
`SearchPage::resolveManifsForLieu() payload = ${JSON.stringify(payload)}` | |
) | |
$vue.lieuIds = payload.itemId ? [payload.itemId] : payload.itemIds | |
const $params = { | |
date_start_after: todayPlusDays(-$vue.daysBefore).toISOString().substring(0, 10), | |
date_start_before: todayPlusDays($vue.daysAfter).toISOString().substring(0, 10) |