This repository has been archived by the owner on Aug 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
692 additions
and
495 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,63 @@ | ||
# OS | ||
# =========== | ||
.DS_Store | ||
ehthumbs.db | ||
Icon? | ||
Thumbs.db | ||
|
||
# Node and related ecosystem | ||
# ========================== | ||
.nodemonignore | ||
.sass-cache/ | ||
npm-debug.log | ||
node_modules/ | ||
public/lib/ | ||
public/dist/ | ||
app/tests/coverage/ | ||
.bower-*/ | ||
.idea/ | ||
|
||
# MEAN.js app and assets | ||
# ====================== | ||
public/dist/ | ||
uploads | ||
modules/users/client/img/profile/uploads | ||
config/env/local.js | ||
*.pem | ||
|
||
# Sublime editor | ||
# ============== | ||
.sublime-project | ||
*.sublime-project | ||
*.sublime-workspace | ||
|
||
# Eclipse project files | ||
# ===================== | ||
.project | ||
.settings/ | ||
.*.md.html | ||
.metadata | ||
*~.nib | ||
local.properties | ||
|
||
# IntelliJ | ||
# ======== | ||
*.iml | ||
|
||
# Cloud9 IDE | ||
# ========= | ||
.c9/ | ||
data/ | ||
mongod | ||
|
||
# General | ||
# ======= | ||
*.log | ||
*.csv | ||
*.dat | ||
*.out | ||
*.pid | ||
*.gz | ||
*.tmp | ||
*.bak | ||
*.swp | ||
logs/ | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
language: node_js | ||
node_js: | ||
- "0.10" | ||
- "0.12" | ||
env: | ||
- NODE_ENV=travis | ||
services: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM dockerfile/nodejs | ||
FROM node:0.10 | ||
|
||
MAINTAINER Matthias Luebken, [email protected] | ||
|
||
|
@@ -20,7 +20,7 @@ RUN bower install --config.interactive=false --allow-root | |
# Make everything available for start | ||
ADD . /home/mean | ||
|
||
# currently only works for development | ||
# Set development environment as default | ||
ENV NODE_ENV development | ||
|
||
# Port 3000 for server | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
{ | ||
"name": "meanjs", | ||
"version": "0.4.0", | ||
"description": "Fullstack JavaScript with MongoDB, Express, AngularJS, and Node.js.", | ||
"dependencies": { | ||
"bootstrap": "~3", | ||
"angular": "~1.2", | ||
"angular-resource": "~1.2", | ||
"angular-animate": "~1.2", | ||
"angular-mocks": "~1.2", | ||
"angular-bootstrap": "~0.11.0", | ||
"angular-ui-utils": "~0.1.1", | ||
"angular-ui-router": "~0.2.10", | ||
"angular-file-upload": "~1.1.5" | ||
} | ||
"name": "meanjs", | ||
"version": "0.4.0", | ||
"description": "Fullstack JavaScript with MongoDB, Express, AngularJS, and Node.js.", | ||
"dependencies": { | ||
"bootstrap": "~3", | ||
"angular": "~1.3", | ||
"angular-resource": "~1.3", | ||
"angular-animate": "~1.3", | ||
"angular-mocks": "~1.3", | ||
"angular-bootstrap": "~0.13", | ||
"angular-ui-utils": "bower", | ||
"angular-ui-router": "~0.2", | ||
"angular-file-upload": "~1.1.5" | ||
}, | ||
"resolutions": { | ||
"angular": "~1.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.