Skip to content

Instantly share code, notes, and snippets.

@ultim8k
Created October 31, 2017 21:32
Show Gist options
  • Save ultim8k/0df34b30840b98b3d2f82cfda4f29e5b to your computer and use it in GitHub Desktop.
Save ultim8k/0df34b30840b98b3d2f82cfda4f29e5b to your computer and use it in GitHub Desktop.
New web project starter pack
# editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[*.html]
indent_size = 4
[*.md]
trim_trailing_whitespace = false
[swagger.json]
indent_size = 4
[package.json]
# The indent size used in the `package.json` file should not be changed
# https://github.com/npm/npm/pull/3180#issuecomment-16336516
indent_size = 2
# Created by .ignore support plugin (hsz.mobi)
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
# Logs and databases #
######################
*.log
*.sql
*.sqlite
# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Node.js files #
#################
node_modules
node_modules/*
# this project #
################
dist
dist/*

New web project starter pack

A bunch of files to use when starting a new web project

_
| |__ _ _ _ __ ___ __ _ _ __ ___
| '_ \| | | | '_ ` _ \ / _` | '_ \/ __|
| | | | |_| | | | | | | (_| | | | \__ \
|_| |_|\__,_|_| |_| |_|\__,_|_| |_|___/
/* TEAM */
Your title: Your name.
Site: email, link to a contact form, etc.
Twitter: your Twitter username.
Location: City, Country.
[...]
/* THANKS */
Name: name or url
[...]
/* SITE */
Last update: YYYY/MM/DD
Standards: HTML5, CSS3,..
Components: Modernizr, jQuery, etc.
Software: Software used for the development
<!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">
<title></title>
<meta name="description" content="">
<meta name="keywords" lang="en-us" content="">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<style>
/* base styles */
</style>
</head>
<body>
</body>
</html>
# www.robotstxt.org/
# Allow crawling of all content
User-agent: *
Disallow: /secret
# Our security address
Contact: [email protected]
# Our PGP key
Encryption: https://keybase.io/##########/pgp_keys.asc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment