Skip to content

Instantly share code, notes, and snippets.

View Senior-Pomidor's full-sized avatar
💣
Oh my

Senior-Pomidor

💣
Oh my
View GitHub Profile
@lukaswilkeer
lukaswilkeer / .bashrc
Last active February 13, 2023 15:47
Gnome terminal with colors and git branch.
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
#define GIT_COLOR_NORMAL “”
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
@designervoid
designervoid / Dockerfile
Last active October 7, 2022 10:47
Web app with HTTPS, based on proxy Traefik and Nuxt.js
# my_frontend/Dockerfile
### STAGE 1: Build ###
FROM node:latest as build
RUN mkdir /usr/src/app
WORKDIR /usr/src/app
ENV PATH /usr/src/app/node_modules/.bin:$PATH
COPY package.json /usr/src/app/package.json
RUN npm install --silent
COPY . /usr/src/app