Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. Laynes-MacBook-Pro:bloccit laynetaylor$ git ls-files
  2. .env
  3. .eslintrc.json
  4. .gitignore
  5. .project
  6. .sequelizerc
  7. .vscode/launch.json
  8. package-lock.json
  9. package.json
  10. spec/integration/posts_spec.js
  11. spec/integration/static_spec.js
  12. spec/integration/topics_spec.js
  13. spec/integration/users_spec.js
  14. spec/support/jasmine.json
  15. spec/support/mock-auth.js
  16. spec/unit/post_spec.js
  17. spec/unit/topic_spec.js
  18. spec/unit/user_spec.js
  19. src/app.js
  20. src/assets/css/application.css
  21. src/auth/helpers.js
  22. src/config/main-config.js
  23. src/config/passport-config.js
  24. src/config/route-config.js
  25. src/controllers/advertisementController.js
  26. src/controllers/postController.js
  27. src/controllers/staticController.js
  28. src/controllers/topicController.js
  29. src/controllers/userController.js
  30. src/db/config/config.json
  31. src/db/migrations/20190602161353-create-topic.js
  32. src/db/migrations/20190602163833-create-banner.js
  33. src/db/migrations/20190603000651-create-rule.js
  34. src/db/migrations/20190921215924-create-post.js
  35. src/db/migrations/20190923183240-create-user.js
  36. src/db/migrations/20190925141213-add-user-to-posts.js
  37. src/db/migrations/20190925151350-add-role-to-users.js
  38. src/db/models/advertisement.js
  39. src/db/models/banner.js
  40. src/db/models/index.js
  41. src/db/models/post.js
  42. src/db/models/rule.js
  43. src/db/models/topic.js
  44. src/db/models/user.js
  45. src/db/queries.advertisements.js
  46. src/db/queries.posts.js
  47. src/db/queries.topics.js
  48. src/db/queries.users.js
  49. src/db/seeds/20190609171210-topics.js
  50. src/db/seeds/20190920213615-advertisements.js
  51. src/policies/application.js
  52. src/policies/topic.js
  53. src/routes/advertisements.js
  54. src/routes/posts.js
  55. src/routes/static.js
  56. src/routes/topics.js
  57. src/routes/users.js
  58. src/routes/validation.js
  59. src/server.js
  60. src/views/advertisements/edit.ejs
  61. src/views/advertisements/index.ejs
  62. src/views/advertisements/new.ejs
  63. src/views/advertisements/show.ejs
  64. src/views/posts/edit.ejs
  65. src/views/posts/new.ejs
  66. src/views/posts/show.ejs
  67. src/views/static/aboutUs.ejs
  68. src/views/static/index.ejs
  69. src/views/static/partials/baseScripts.ejs
  70. src/views/static/partials/head.ejs
  71. src/views/static/partials/messages.ejs
  72. src/views/static/partials/navbar.ejs
  73. src/views/topics/edit.ejs
  74. src/views/topics/index.ejs
  75. src/views/topics/new.ejs
  76. src/views/topics/show.ejs
  77. src/views/users/sign_in.ejs
  78. src/views/users/sign_up.ejs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement