aboutsummaryrefslogtreecommitdiffstats
path: root/src/internal-server/start.js
blob: adcac0bec6a4f011e4e5ffef3159f40c8fb4c025 (plain) (blame)
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
/*
|--------------------------------------------------------------------------
| Http server
|--------------------------------------------------------------------------
|
| This file bootstraps Adonisjs to start the HTTP server. You are free to
| customize the process of booting the http server.
|
| """ Loading ace commands """
|     At times you may want to load ace commands when starting the HTTP server.
|     Same can be done by chaining `loadCommands()` method after
|
| """ Preloading files """
|     Also you can preload files by calling `preLoad('path/to/file')` method.
|     Make sure to pass a relative path from the project root.
*/
process.env.FERDI_VERSION = '5.4.0-beta.5';

const path = require('path');
const fs = require('fs-extra');
const os = require('os');

process.env.ENV_PATH = path.join(__dirname, 'env.ini');

const { Ignitor } = require('@adonisjs/ignitor');
const fold = require('@adonisjs/fold');

module.exports = async (userPath, port) => {
  const dbPath = path.join(userPath, 'server.sqlite');
  const dbTemplatePath = path.join(__dirname, 'database', 'template.sqlite');

  if (!await fs.exists(dbPath)) {
    // Manually copy file
    // We can't use copyFile here as it will cause the file to be readonly on Windows
    const dbTemplate = await fs.readFile(dbTemplatePath);
    await fs.writeFile(dbPath, dbTemplate);

    // Change permissions to ensure to file is not read-only
    if (os.platform() === 'win32') {
      // eslint-disable-next-line no-bitwise
      fs.chmodSync(dbPath, fs.statSync(dbPath).mode | 146);
    }
  }

  process.env.DB_PATH = dbPath;
  process.env.USER_PATH = userPath;
  process.env.PORT = port;

  new Ignitor(fold)
    .appRoot(__dirname)
    .fireHttpServer()
    .catch(console.error); // eslint-disable-line no-console
};