Skip to content

Instantly share code, notes, and snippets.

View balub's full-sized avatar
🏠
Working from home

Balu Babu balub

🏠
Working from home
View GitHub Profile
name: Deploy Frontend to EC2
on:
push:
branches:
- deploy_stage
jobs:
build:
name: Build
runs-on: ubuntu-latest
#!/bin/bash
set -e
# Database connection details
DB_HOST="127.0.0.1"
DB_PORT="5432"
DB_NAME="hoppscotch"
DB_USER="postgres"
DB_PASSWORD="testpass"
FROM ubuntu:bionic
RUN apt-get update && apt-get install -y \
software-properties-common \
&& add-apt-repository ppa:freecad-maintainers/freecad-stable \
&& apt-get update && apt-get install -y \
freecad
COPY box_generator.py /box_generator.py #replace box_generator with your python file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<title>Class 0</title>
</head>
<body class="bg-gray-900">
var mediaJSON = { "categories" : [ { "name" : "Movies",
"videos" : [
{ "description" : "Big Buck Bunny tells the story of a giant rabbit with a heart bigger than himself. When one sunny day three rodents rudely harass him, something snaps... and the rabbit ain't no bunny anymore! In the typical cartoon tradition he prepares the nasty rodents a comical revenge.\n\nLicensed under the Creative Commons Attribution license\nhttp://www.bigbuckbunny.org",
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" ],
"subtitle" : "By Blender Foundation",
"thumb" : "images/BigBuckBunny.jpg",
"title" : "Big Buck Bunny"
},
{ "description" : "The first Blender Open Movie from 2006",
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4" ],
@balub
balub / README-Template.md
Created August 31, 2019 11:36 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites