Skip to content

Commit

Permalink
basic file structure
Browse files Browse the repository at this point in the history
  • Loading branch information
bmorelli25 committed May 27, 2017
1 parent 9a9e69a commit 405efb5
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 47 deletions.
49 changes: 2 additions & 47 deletions .gitignore
@@ -1,47 +1,2 @@
# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# Windows shortcuts
*.lnk

# =========================
# Operating System Files
# =========================

# OSX
# =========================

.DS_Store
.AppleDouble
.LSOverride

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
node_modules
config.js
2 changes: 2 additions & 0 deletions app.js
@@ -0,0 +1,2 @@
var twit = require('twit');
var config = require('./config.js');
22 changes: 22 additions & 0 deletions package.json
@@ -0,0 +1,22 @@
{
"name": "twitter-bot",
"version": "1.0.0",
"description": "Nodejs Twitter Bot",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmorelli25/Twitter-Bot.git"
},
"author": "Brandon Morelli",
"license": "ISC",
"bugs": {
"url": "https://github.com/bmorelli25/Twitter-Bot/issues"
},
"homepage": "https://github.com/bmorelli25/Twitter-Bot#readme",
"dependencies": {
"twit": "^2.2.5"
}
}

0 comments on commit 405efb5

Please sign in to comment.