English | 简体中文
Mipha is an open-source elixir forum (inspire by homeland).
# clone
git clone [email protected]:zven21/mipha.git
# init setup
cd mipha && ./script/setup
# db create && db migrate db seeds
mix ecto.reset
# run
mix phx.serve
.
├── assets # JS CSS and static file.
├── lib #
│ ├── mipha #
│ │ ├── accounts # user team company location model.
│ │ ├── collections # user collection.
│ │ ├── follows # follows
│ │ ├── markdown # markdown
│ │ ├── notifications # notification
│ │ ├── replies # the reply of topic.
│ │ ├── stars # like topic or reply
│ │ ├── topics # topic and node.
│ │ ├── utils #
│ │ ├── mailer.ex # send email.
│ │ ├── markdown.ex #
│ │ ├── qiniu.ex # image upload
│ │ ├── regexp.ex # regex
│ │ ├── token.ex # token verification, reset password etc.
│ ├── mipha_web
│ │ ├── channels # socket
│ │ ├── controllers # Controllers
│ │ │ ├── admin # admin dashboard
│ │ ├── plugs # Plugs
│ │ ├── templates # Templates
│ │ ├── views # Views
│ │ ├── email.ex #
│ │ ├── session.ex #
│ ├── mipha.ex
│ ├── mipha_web.ex
└── test # test