💃 Anime tracker, database and community. 136 Commits
2017-06-16 18:41:10 +02:00
images Added SVG icons from Font Awesome 2017-06-16 18:12:18 +02:00
jobs Improved makefile 2017-06-16 15:42:22 +02:00
layout Added frontpage and Google login 2017-06-15 23:03:55 +02:00
logs Added logs directory to git 2017-06-16 13:49:22 +02:00
mixins Added SVG icons from Font Awesome 2017-06-16 18:12:18 +02:00
pages Modified frontpage 2017-06-16 18:41:10 +02:00
patches Improved makefile 2017-06-16 15:42:22 +02:00
scripts Starting to add scripts 2016-12-03 00:23:05 +09:00
styles Added SVG icons from Font Awesome 2017-06-16 18:12:18 +02:00
temp New directory structure 2017-06-07 23:37:13 +02:00
utils Improved icon loading 2017-06-16 18:19:32 +02:00
.editorconfig Added editor config 2016-11-02 22:52:11 +09:00
.gitignore Added logs directory to git 2017-06-16 13:49:22 +02:00
api.go Removed old code 2017-06-15 01:43:02 +02:00
auth.go Improved auth and logging 2017-06-15 15:50:39 +02:00
config.json Added SVG icons from Font Awesome 2017-06-16 18:12:18 +02:00
deploy.sh Implemented ratings UI 2017-06-08 11:51:34 +02:00
google.go Implemented logout 2017-06-15 21:59:14 +02:00
helper.go Implemented forum overview 2016-11-19 02:58:00 +09:00
logger.go Implemented logout 2017-06-15 21:59:14 +02:00
login.go Implemented logout 2017-06-15 21:59:14 +02:00
main.go Added SVG icons from Font Awesome 2017-06-16 18:12:18 +02:00
makefile Improved makefile 2017-06-16 15:42:22 +02:00
README.md Added SVG icons from Font Awesome 2017-06-16 18:12:18 +02:00
rewrite.go Switched to net/http 2017-05-30 00:07:05 +02:00
tests.go Improved tests 2017-06-14 22:13:30 +02:00
tsconfig.json Starting to add scripts 2016-12-03 00:23:05 +09:00

Anime Notifier

Installation

Prerequisites

  • Install Go (1.9 or higher)
  • Install Aerospike (3.14.0 or higher)

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 60M
        data-in-memory true

        # Maximum object size. 128K is ideal for SSDs
        write-block-size 128K

        # Write block size x Post write queue = Cache size (for write block buffers)
        post-write-queue 128
    }
}
  • 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

Download repository

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

HTTPS

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

API keys

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

Build all

  • Run make all

Fetch data

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

Install pack & run

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

Run

  • Start the web server in notify.moe directory: run