/protokit

Primary LanguageJavaScript

ProtoKit

A starting point for creating a static HTML/CSS/JS site

ProtoKit requires Node.js. Before starting with we recommend you download the latest Node.js LTS for your system

Node.js downloads page

Getting started

  1. Clone this repository
$ git clone https://github.com/heymrcarter/protokit
  1. Navigate to folder
$ cd protokit
  1. Install dependencies
$ npm install
  1. Setup ProtoKit for your project
$ npm run setup
  1. Run your project
$ npm start

Adding your project to GitHub

Open a terminal window in your project's directory and do the following:

  1. Create a local git repository
$ git init
  1. Create GitHub repository in your GitHub account and copy remote link

New repository

  1. Add GitHub remote repository to local repository
$ git remote add origin <YOUR REMOTE URL>
  1. Commit changes
$ git add .
$ git commit -m '<COMMIT MESSAGE>'
  1. Push changes to GitHub
$ git push origin head