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
# Set the base image to Node 18 | |
FROM node:18 | |
# File Author / Maintainer | |
LABEL maintainer=your_email@gmail.com" | |
# Update the repository sources list | |
RUN apt-get update && apt-get upgrade -y | |
# Install Chromium |
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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="$HOME/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes |
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
#Install algoliasearch, pyrebase and use Python 3 | |
from algoliasearch import algoliasearch | |
import pyrebase | |
import json | |
import time | |
# Algolia config | |
client = algoliasearch.Client("Id", "Apikey") | |
index = client.init_index('YourIndex') |