git 테스트

sbkwgh 8f0bc8f003 Add margin-bottom to user-display 6 vuotta sitten
config 0b7cea7321 Change host so it works for some reason 7 vuotta sitten
frontend 8f0bc8f003 Add margin-bottom to user-display 6 vuotta sitten
lib 65b53e44cf Refactor file 7 vuotta sitten
migrations 3d261548e0 Add session migration 7 vuotta sitten
models 722704e945 Update vulnerable packages, replace slug with urlSlug package 7 vuotta sitten
routes ea3ac9bf09 Add user-display and user-placeholder components for search page; Update search page to include two separate sections for threads and users; update user api route to include more associations for thread-display component 6 vuotta sitten
test 8bec7b0d6a Fix tests 7 vuotta sitten
.gitignore eefebb5978 Merge branch 'frontend' 8 vuotta sitten
DOCUMENTATION.md 6a0cdc7a07 Update README, move (totally incomplete) documentation to its own file 8 vuotta sitten
LICENSE 2e15a2ca14 Create LICENSE 8 vuotta sitten
Procfile 97c664e75d Prepare for use in heroku/production 8 vuotta sitten
README.md aedd7e05ae Add updated screenshots 7 vuotta sitten
package-lock.json 722704e945 Update vulnerable packages, replace slug with urlSlug package 7 vuotta sitten
package.json 722704e945 Update vulnerable packages, replace slug with urlSlug package 7 vuotta sitten
server.js 1356d55090 Add linkPreview route, tests and implementation 7 vuotta sitten

README.md

Vue Forum

Simple and beautiful forum software - created using Express, Vue, and Sequelize.
Click here for a link to the demo.

Features

  • Mobile ready single-page application
  • Real-time notification system
  • Profile pictures
  • Infinite-scroll loading of posts and threads
  • @ mentions
  • Polls
  • Markdown editor
  • Inline link expansions for Twitter, GitHub, Wikipedia, and more to come
  • Admin dashboard for forum analytics
  • Multiple admin users
  • Moderation built in, including:
    • Locking or deleteing threads and posts
    • Blocking user IP address
    • Suspending users from creating posts or starting threads

Screenshots

Homepage

forum homepage

Admin dashboard

forum dashboard

Admin settings page

forum general

Admin user page

forum users page

Admin moderation page

forum moderation

Install

To install on Heroku:

  1. git clone https://github.com/sbkwgh/forum.git && cd forum
  2. heroku login
  3. heroku git:remote -a <app-name>
  4. heroku config:set NODE_ENV=production
  5. heroku config:set SESSION_SECRET=<session-secret>
  6. Add database add-on, get database URL
  7. heroku config:set DATABASE_URL=<database-url>
  8. cd frontend && npm install
  9. npm run build
  10. Remove the line dist/ from .gitignore
  11. cd .. && git add -A && git commit -m "Update .gitignore"
  12. git push heroku master
  13. Visit the URL of the app and complete the on-screen instructions

N.B. the database here is assumed to be MySQL - to use Postgres or another you must install the corresponding driver on npm