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 { NextApiRequest, NextApiResponse } from 'next'; | |
import axios from 'axios'; | |
import fs from 'fs'; | |
import JSZip from 'jszip'; | |
import path from 'path'; | |
import puppeteer from 'puppeteer'; | |
import rimraf from 'rimraf'; | |
export const config = { | |
api: { |
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
SQLite format 3 @ s™ s™ .v‰ | |
¸ u# | |
{ê2 | |
8» | |
v¸ | |
Q |
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
#!/bin/bash | |
# Update and upgrade the system | |
echo "Updating and upgrading the system..." | |
sudo apt-get update -y && sudo apt-get upgrade -y | |
# Install necessary dependencies | |
echo "Installing dependencies..." | |
sudo apt-get install -y software-properties-common |