├── .gitignore ├── README.md ├── client ├── config.js.dist ├── css │ ├── application.css │ ├── bootstrap-theme.css │ └── bootstrap.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── index.html ├── js │ ├── app.js │ ├── controllers.js │ ├── directives.js │ ├── filters.js │ └── services.js ├── lib │ ├── angular │ │ ├── angular-route.js │ │ ├── angular-sanitize.js │ │ └── angular.js │ ├── bootstrap │ │ └── bootstrap.js │ ├── jquery │ │ └── jquery.js │ └── moment │ │ └── moment.js ├── partials │ └── partial1.html └── sites │ ├── 404.html │ ├── about.html │ ├── home.html │ ├── login.html │ ├── logout.html │ ├── register.html │ ├── user.html │ └── users.html ├── package.json └── server ├── bin ├── cli └── server ├── config.json ├── lib └── server │ ├── api.js │ ├── app.js │ ├── auth.js │ ├── cli.js │ └── models.js ├── package.json └── views └── errors ├── 404.html └── 500.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/README.md -------------------------------------------------------------------------------- /client/config.js.dist: -------------------------------------------------------------------------------- 1 | var API_URL = 'http://localhost/api'; 2 | var REGISTRATION_ENABLED = false; 3 | -------------------------------------------------------------------------------- /client/css/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/css/application.css -------------------------------------------------------------------------------- /client/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/css/bootstrap-theme.css -------------------------------------------------------------------------------- /client/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/css/bootstrap.css -------------------------------------------------------------------------------- /client/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /client/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /client/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /client/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/index.html -------------------------------------------------------------------------------- /client/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/js/app.js -------------------------------------------------------------------------------- /client/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/js/controllers.js -------------------------------------------------------------------------------- /client/js/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/js/directives.js -------------------------------------------------------------------------------- /client/js/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/js/filters.js -------------------------------------------------------------------------------- /client/js/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/js/services.js -------------------------------------------------------------------------------- /client/lib/angular/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/lib/angular/angular-route.js -------------------------------------------------------------------------------- /client/lib/angular/angular-sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/lib/angular/angular-sanitize.js -------------------------------------------------------------------------------- /client/lib/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/lib/angular/angular.js -------------------------------------------------------------------------------- /client/lib/bootstrap/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/lib/bootstrap/bootstrap.js -------------------------------------------------------------------------------- /client/lib/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/lib/jquery/jquery.js -------------------------------------------------------------------------------- /client/lib/moment/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/lib/moment/moment.js -------------------------------------------------------------------------------- /client/partials/partial1.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/sites/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/sites/404.html -------------------------------------------------------------------------------- /client/sites/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/sites/about.html -------------------------------------------------------------------------------- /client/sites/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/sites/home.html -------------------------------------------------------------------------------- /client/sites/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/sites/login.html -------------------------------------------------------------------------------- /client/sites/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/sites/logout.html -------------------------------------------------------------------------------- /client/sites/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/sites/register.html -------------------------------------------------------------------------------- /client/sites/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/sites/user.html -------------------------------------------------------------------------------- /client/sites/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/client/sites/users.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/package.json -------------------------------------------------------------------------------- /server/bin/cli: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require(__dirname + '/../lib/server/cli.js'); 3 | -------------------------------------------------------------------------------- /server/bin/server: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require(__dirname + '/../lib/server/app.js'); 3 | -------------------------------------------------------------------------------- /server/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/server/config.json -------------------------------------------------------------------------------- /server/lib/server/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/server/lib/server/api.js -------------------------------------------------------------------------------- /server/lib/server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/server/lib/server/app.js -------------------------------------------------------------------------------- /server/lib/server/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/server/lib/server/auth.js -------------------------------------------------------------------------------- /server/lib/server/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/server/lib/server/cli.js -------------------------------------------------------------------------------- /server/lib/server/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/server/lib/server/models.js -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fkrauthan/SimpleTwitter/HEAD/server/package.json -------------------------------------------------------------------------------- /server/views/errors/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/views/errors/500.html: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------