Skip to content

Instantly share code, notes, and snippets.

View 0mppula's full-sized avatar
💭
Welcome!

Omar Kraidié 0mppula

💭
Welcome!
View GitHub Profile

Getting Started with the Backend

Initialize Project

  • Create a directory for your project
  • Initialize your project with npm init
  • Initialize git with git init
  • Create a .gitignore file in your projects root directory
  • Add .env, node_modules and all other possible spec files to .gitignore
@0mppula
0mppula / git-cheat-sheet.md
Last active May 4, 2022 07:32
Git cheat cheat new code session

Pull from master and create a new branch

git checkout master
git pull
git checkout -b <branch>

When mergin you have to be in the branch you want to merge into

In this example we are merging feature/new-feature branch with the master branch.

@0mppula
0mppula / README.md
Created October 14, 2021 12:41 — forked from hofmannsven/README.md
Git Cheatsheet
@0mppula
0mppula / django_crash_course.MD
Created April 6, 2021 16:52 — forked from bradtraversy/django_crash_course.MD
Commands for Django 2.x Crash Course

Django Crash Course Commands

# Install pipenv
pip install pipenv
# Create Venv
pipenv shell