notebook.ai Tool for world building
Go to file
2020-10-18 04:04:19 -07:00
.github
.storybook
app a ton more building fields/links 2020-10-17 17:44:17 -07:00
bin
config typo/changelog fixes 2020-10-18 04:04:19 -07:00
db a ton more building fields/links 2020-10-17 17:44:17 -07:00
docs
features
lib add rake task for automatically compiling eod reports 2020-10-02 14:56:11 -07:00
log
public
script
spec
stories
test a ton more building fields/links 2020-10-17 17:44:17 -07:00
vendor/assets
.browserslistrc
.coveralls.yml
.dockerignore Add .dockerignore to reduce build context. 2020-10-06 16:53:17 +02:00
.editorconfig
.gitignore
.rspec
.rubocop.yml
.ruby-version Add .dockerignore to reduce build context. 2020-10-06 16:53:17 +02:00
.tool-versions
.travis.yml
app.json
babel.config.js
CHANGELOG.md
config.ru
docker-compose.yml Add .dockerignore to reduce build context. 2020-10-06 16:53:17 +02:00
Dockerfile upgrade ruby 2.6.3 -> 2.6.6 2020-10-15 01:41:41 -07:00
Gemfile Bump puma from 4.3.6 to 5.0.2 2020-10-13 21:26:20 +00:00
Gemfile.lock Merge pull request #784 from indentlabs/dependabot/bundler/puma-5.0.2 2020-10-15 01:32:35 -07:00
Guardfile
LICENSE.rdoc
package-lock.json get doc entities sidebar working in component 2020-09-17 17:06:31 -07:00
package.json wrapping up PageLookupSidebar 2020-09-19 17:26:46 -07:00
postcss.config.js
Procfile
Rakefile
README.rdoc upgrade ruby 2.6.3 -> 2.6.6 2020-10-15 01:41:41 -07:00
yarn.lock Merge pull request #753 from indentlabs/dependabot/npm_and_yarn/markdown-to-jsx-6.11.4 2020-10-07 00:20:40 -07:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

= Notebook.ai 
{<img src="https://travis-ci.org/indentlabs/notebook.png?branch=master" alt="Build Status" />}[https://travis-ci.org/indentlabs/notebook]
{<img src="https://codeclimate.com/github/indentlabs/notebook/badges/gpa.svg" />}[https://codeclimate.com/github/indentlabs/notebook]
{<img src="https://codeclimate.com/github/indentlabs/notebook/badges/coverage.svg" />}[https://codeclimate.com/github/indentlabs/notebook/coverage]
{<img src="http://inch-ci.org/github/indentlabs/notebook.svg?branch=master" alt="Inline docs" />}[http://inch-ci.org/github/indentlabs/notebook]

== What is Notebook.ai? 

see {live website}[http://notebook.ai/]

notebook is a set of tools for writers, game designers, and roleplayers to create magnificent universes  and everything within them.

From a simple interface in your browser, on your phone, or on your tablet, you can do everything you'd ever want to do while creating your own little (or big!) world.

notebook is a writer's planning tool for creating anything from universes to characters, to plots, to individual items.

It is also meant to expand into many areas to benefit writers (and exciting to developers), including areas like:

- Automated revision services
- Structuring real-time natural language processing output into a semantically reusable state
- Decision-making algorithms for improving reading comprehension, reading level, accent-correction, and other real-time writing suggestions
- A knowledge graph of structured data in your universe, and an engine to manipulate it in awesome ways
- Machine learning on generating character and location names, suggesting realistic defaults (random or not), and more
- and tons more


== The Issue Tracker

If you are interested in helping out, check out the issue tracker. I've loaded it with tons of action-based, chunk-sized improvements that I think anyone familiar with Rails will be able to jump in and complete. Feel free to make suggestions, open issues, join discussions, or ask where you should look in the code to get started implementing something. :)

You'll notice there are *a lot* of issues in *a lot* of milestones. Call it feature creep, but I've separated every potential idea for full-fledged services into milestones that can be worked on completely independently of others. The features are (for the most part) has no deadlines and are in development simultaneously, meaning if you see a feature you would really like to use, you can make that feature happen by jumping directly into it and completing its issues.

TL;DR Milestones are independent of each other -- work on whatever you want to see made!


== Installing the notebook development stack locally

Install ruby 2.6.6 (using `rbenv`, `rvm`, any other Ruby version manager, or just plain ol' ruby)

    rbenv install 2.6.6

Install necessary libraries

    sudo apt install imagemagick libmagickwand-dev
    sudo apt install libpq-dev

Clone the code

    git clone git@github.com:indentlabs/notebook.git

Install gems

    bundle install

Create database

    rake db:create

Run initial database migrations

    rake db:migrate
    rake billing_plans:initialize_defaults
    rake data_migrations:create_default_billing_plans
    rake db:seed

Finally, run the server with

    bundle exec rails server

You should now see a copy of the site running locally at http://localhost:3000/!

You can also run background workers with sidekiq (and can run specific queues with the `-q <queue_name>` flag):

    bundle exec sidekiq -C config/sidekiq.yml

== Running the notebook stack locally with Docker

- install {Docker}[https://www.docker.com/products/overview]
- install {Docker Compose}[https://docs.docker.com/compose/install]
- clone this git repo
- cd into the root of this repo, and then run
    docker-compose up
- You should now see a copy of the site running locally at http://localhost:3000/

== Deployment to notebook.ai

Deployment to the live production servers at www.Notebook.ai will only be done by approved developers, and consists of a deployment of

- deploy github to staging (done only by approved developers)

- mirror data from live into staging

- run regression tests on staging environment

- deploy from staging to live (viewed at notebook.ai)


== Thanks

Feel free to get in touch if you have any questions, comments, or concerns! :)

(c) Andrew Brown 2016