Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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 { LeafletProvider, createLeafletContext } from '@react-leaflet/core'; | |
| import { Map as LeafletMap, LatLngBoundsExpression, LatLngExpression, MapOptions, FitBoundsOptions } from 'leaflet'; | |
| import React, { useCallback, useEffect, useRef, useState } from 'react'; | |
| interface MapContainerProps extends MapOptions { | |
| bounds?: LatLngBoundsExpression; | |
| boundsOptions?: FitBoundsOptions; | |
| center?: LatLngExpression; | |
| children?: React.ReactNode; | |
| className?: string; |
This file contains hidden or 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
| const ftp = require("basic-ftp") | |
| let currentServer = 1; | |
| const getHost = (number) => { | |
| number = number.toString().padStart(3, '0'); | |
| let host = `ftp.cluster${number}.hosting.ovh.net`; | |
| console.log('Host is :', host); | |
| return host; | |
| } | |
| const connectFtp = async (number) => { | |
| let client = new ftp.Client() |
This file contains hidden or 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
| //https://forum.axelor.com/t/axelor-5-3-3-installation/2913/22 | |
| Axelor Ver 5.3.6 Installation in Ubuntu 18.0 | |
| Prerequisites | |
| Git 9 | |
| OpenJDK 8 15 | |
| Tomcat 9.0.26 8 | |
| PostgreSQL version 10.12 8 or later | |
| Install Git | |
| Install Git 9 |
NewerOlder