Skip to content

Instantly share code, notes, and snippets.

View matthewaubert's full-sized avatar

Matthew Aubert matthewaubert

View GitHub Profile
@matthewaubert
matthewaubert / django-app-workflow.md
Last active May 2, 2024 17:07
Django App Workflow

Django App Workflow

last updated: 2 May 2024

Note: Replace all following instances of <project-name> with the name of your current project

Django Installation

Ref: https://tutorial.djangogirls.org/en/django_installation/

Virtual Environment

  1. Create your project directory and change into it:
@matthewaubert
matthewaubert / express-app-workflow.md
Last active May 1, 2024 23:42
Express App Workflow
@matthewaubert
matthewaubert / react-app-workflow.md
Last active May 5, 2024 02:17
React App Workflow
@matthewaubert
matthewaubert / js-app-startup.md
Last active January 5, 2024 17:48
JavaScript app startup workflow

JavaScript App Startup Workflow

Last updated: 5 Jan 2024

Initialize Project

  1. Create new repo on Github
  2. cd into the appropriate parent directory and clone repo locally via the command-line interface. For example:
    cd ~/path/to/directory
    

git clone git@github.com:username/repo-name.git