註冊
由開發部幫忙進行註冊
登入
帳號、密碼
users: {
  _id: <ObjectId>,
	username: <String>,
	password: <String>
}
unix timestamp
informations: {
	_id: <ObjectId>,
	user_id: <ObjectId>,
	tag_id: <ObjectId>,
	title: <String>,
	content: <String>,
	created_at: <Number>,
	updated_at: <Number>
}
Index:
{ title: 'text' }
{ created_at: -1 }
{ updated_at: -1 }
{ tag_id: 1 }
tags: {
	_id: <ObjectId>,
	name: <String>,
	color: <Number>
}
posts: {
		_id: <ObjectId>,
		user_id: <ObjectId>,
		title: <String>,
		subtitle: <String>,
		cover: <Object<File>>, // Cloud storage -> AWS s3, Google GCS { file_url, file_name, file_type }
		content: <String>,
		youtube_embed_links: <Array<Object>>, { url, text }
		created_at: <Number>,
		updated_at: <Number>
}
Index:
{ title: 'text' }
{ created_at: -1 }
{ updated_at: -1 }