💃 Anime tracker, database and community. 454 Commits
2017-07-06 00:50:12 +02:00
.vscode Updated VS Code search settings and popular anime page 2017-06-25 17:25:20 +02:00
auth Fixed account connect 2017-07-03 00:00:41 +02:00
benchmarks Explicit PrefetchAnime call 2017-07-05 14:34:33 +02:00
db Added gitignore for db folder 2017-06-21 19:34:59 +02:00
images Uploaded optimized image 2017-06-29 01:40:30 +02:00
jobs Fixed sync-anime 2017-07-05 23:25:39 +02:00
layout Cleanup and analytics 2017-06-30 17:51:17 +02:00
logs Added logs directory to git 2017-06-16 13:49:22 +02:00
middleware Implemented music page 2017-06-27 16:23:57 +02:00
mixins Changed forum-tags to tabs 2017-07-03 15:34:50 +02:00
pages Temporary update 2017-07-05 21:37:38 +02:00
patches Facebook login 2017-07-02 23:42:46 +02:00
scripts Dark Flame Master 2017-07-05 23:48:29 +02:00
security Cleanup 2017-06-17 00:49:09 +02:00
styles Improved anime list serialization speed 2017-07-05 13:08:27 +02:00
utils Improved anime list rendering 2017-07-05 15:00:58 +02:00
.editorconfig Added editor config 2016-11-02 22:52:11 +09:00
.gitignore Added chrome extension 2017-07-05 04:10:19 +02:00
assets.go Updated to latest version of pack & run 2017-06-25 13:13:47 +02:00
config.json Changed forum-tags to tabs 2017-07-03 15:34:50 +02:00
LICENSE Added license 2017-07-06 00:50:12 +02:00
main_test.go Improved search 2017-07-02 17:51:17 +02:00
main.go Started working on status filter 2017-07-05 16:52:24 +02:00
makefile Fixed icons on dashboard 2017-06-18 12:50:15 +02:00
profiler.go Added chrome extension 2017-07-05 04:10:19 +02:00
README.md Improved frontpage 2017-06-25 18:06:03 +02:00
rewrite.go Dark Flame Master 2017-07-05 23:48:29 +02:00
tests.go Cleanup 2017-07-05 21:23:59 +02:00
tsconfig.json Started working on scripts 2017-06-19 16:20:46 +02:00

Anime Notifier

Info

notify.moe is powered by the Aero framework from the same author. The project also uses Go and Aerospike.

Installation

Prerequisites

  • Install a Debian based operating system
  • Install Go (1.9 or higher)
  • Install Aerospike (3.14.0 or higher)

Download the repository and its dependencies

  • go get github.com/animenotifier/notify.moe

Install pack & run

  • go get github.com/aerogo/pack
  • go get github.com/aerogo/run
  • go install github.com/aerogo/pack
  • go install github.com/aerogo/run

Build all

  • Run make all
  • Run make ports to set up local port forwarding (80 to 4000, 443 to 4001)
  • You should be able to start the server by executing run now

Database

  • Remove all namespaces in /etc/aerospike/aerospike.conf
  • Add a namespace called arn:
namespace arn {
    storage-engine device {
        file /home/YOUR_NAME/YOUR_PATH/notify.moe/db/arn-dev.dat
        filesize 64M
        data-in-memory true

        # Maximum object size. 128K is ideal for SSDs but we need 1M for search indices.
        write-block-size 1M

        # Write block size x Post write queue = Cache memory usage (for write block buffers)
        post-write-queue 1
    }
}
  • Download the database for developers to notify.moe/db/arn-dev.dat
  • Start the database using sudo service aerospike start
  • Confirm that the status is "green": sudo service aerospike status

Hosts

  • Add 127.0.0.1 arn-db to /etc/hosts
  • Add 127.0.0.1 beta.notify.moe to /etc/hosts

HTTPS

  • Create the certificate notify.moe/security/fullchain.pem (domain: beta.notify.moe)
  • Create the private key notify.moe/security/privkey.pem

API keys

{
	"google": {
		"id": "YOUR_KEY",
		"secret": "YOUR_SECRET"
	}
}

Fetch data

  • Run jobs/sync-anime/sync-anime from this repository to fetch anime data

Run

  • Start the web server in notify.moe directory: run
  • Open https://beta.notify.moe which should now resolve to localhost