├── .gitignore ├── README.md ├── app ├── __init__.py ├── models.py ├── static │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── index.css │ └── js │ │ ├── build │ │ └── bundle.js │ │ ├── components │ │ ├── Message.js │ │ ├── MessageBoard.js │ │ ├── MessageForm.js │ │ ├── MessageList.js │ │ ├── Pager.js │ │ └── SearchBar.js │ │ ├── index.js │ │ ├── lib │ │ └── jquery.min.js │ │ ├── package.json │ │ └── webpack.config.js ├── templates │ └── index.html └── views.py ├── config.py ├── manage.py ├── requirenments.txt ├── run.py └── screenshot └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | *.pyc 3 | .idea/ 4 | app/static/js/node_modules/ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/app/models.py -------------------------------------------------------------------------------- /app/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/app/static/css/bootstrap.css -------------------------------------------------------------------------------- /app/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/app/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /app/static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/app/static/css/index.css -------------------------------------------------------------------------------- /app/static/js/build/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/app/static/js/build/bundle.js -------------------------------------------------------------------------------- /app/static/js/components/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/app/static/js/components/Message.js -------------------------------------------------------------------------------- /app/static/js/components/MessageBoard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/app/static/js/components/MessageBoard.js -------------------------------------------------------------------------------- /app/static/js/components/MessageForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/app/static/js/components/MessageForm.js -------------------------------------------------------------------------------- /app/static/js/components/MessageList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/app/static/js/components/MessageList.js -------------------------------------------------------------------------------- /app/static/js/components/Pager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/app/static/js/components/Pager.js -------------------------------------------------------------------------------- /app/static/js/components/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/app/static/js/components/SearchBar.js -------------------------------------------------------------------------------- /app/static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/app/static/js/index.js -------------------------------------------------------------------------------- /app/static/js/lib/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/app/static/js/lib/jquery.min.js -------------------------------------------------------------------------------- /app/static/js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/app/static/js/package.json -------------------------------------------------------------------------------- /app/static/js/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/app/static/js/webpack.config.js -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/app/views.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- 1 | SECRET_KEY = "never tell you" 2 | MONGODB_SETTINGS = {'DB': 'message-board'} -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/manage.py -------------------------------------------------------------------------------- /requirenments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/requirenments.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/run.py -------------------------------------------------------------------------------- /screenshot/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defshine/message-board/HEAD/screenshot/screenshot.png --------------------------------------------------------------------------------