Skip to content
Snippets Groups Projects
init-index.js 1.51 KiB
Newer Older
  • Learn to ignore specific revisions
  • // eslint-disable-next-line @typescript-eslint/no-var-requires
    
    const axios = require('axios');
    
    // eslint-disable-next-line @typescript-eslint/no-var-requires
    
    const path = require('path');
    
    // eslint-disable-next-line @typescript-eslint/no-var-requires
    
    require('dotenv').config({ path: path.resolve(__dirname, '../.env') });
    
    axios
    
      .post('http://localhost:3000/api/auth/login', {
    
        email: 'admin@admin.com',
        password: process.env.USER_PWD,
      })
      .then((res) => {
        const config = {
          headers: { Authorization: `Bearer ${res.data.accessToken}` },
        };
        axios
    
          .post('http://localhost:3000/api/structures/resetSearchIndex', {}, config)
    
          .then((res) => {
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
            console.log(`Structures | statusCode: ${res.status}`);
          })
          .catch((error) => {
            console.error('Error in index create');
            console.error(error);
          });
        axios
          .post('http://localhost:3000/api/employer/searchIndex', {}, config)
          .then((res) => {
            console.log(`Employers | statusCode: ${res.status}`);
    
          })
          .catch((error) => {
            console.error('Error in index create');
            console.error(error);
          });
    
    Etienne LOUPIAS's avatar
    Etienne LOUPIAS committed
        axios
          .post('http://localhost:3000/api/userRegistry/searchIndex', {}, config)
          .then((res) => {
            console.log(`Users | statusCode: ${res.status}`);
          })
          .catch((error) => {
            console.error('Error in index create');
            console.error(error);
          });
    
      })
      .catch((error) => {
        console.error('Error in auth');
        console.error(error);
      });