All Projects → Marri → glowfic

Marri / glowfic

Licence: MIT License
The Glowfic Constellation

Programming Languages

HTML
75241 projects
ruby
36898 projects - #4 most used programming language
Haml
164 projects
javascript
184084 projects - #8 most used programming language
SCSS
7915 projects
shell
77523 projects

Build Status Test Coverage

README

Dependencies

If you are not acquainted with Rails, it may help to go through the Getting Started with Rails tutorial for Rails 6.0. If you wish to learn Ruby, try out the quickstart guide provided on their website, or if you are already acquainted with various programming languages, try the Learn X in Y minutes tutorial for Ruby.

This README mostly focuses on how to get started developing this project with Docker – in any environment with Docker installed you should be able to have the Glowfic server up and running.

Setup Process

Cloning the repository

  • Ensure you have Git installed:

    sudo apt-get install git on Ubuntu

    sudo pacman -S git on Arch Linux

  • Clone the repository

    • Enter a folder you want to clone the code to:

      cd ~/Documents

    • Copy the code:

      git clone https://github.com/Marri/glowfic.git

(More specific details, such as if you have write permission and wish to use SSH instead of HTTPS, may be found on the GitHub site.)

Setting up the Glowfic site environment

If you haven't already, start by installing Docker and Docker Compose.

Then run docker-compose up within the glowfic directory. This will set up a Postgres server, a Redis server, and a Glowfic app server which can talk to both of them.

There are some scripts for interacting with the Glowfic server in bin-docker. You may want to add them to your PATH. If you want, you can use direnv to ensure that they're on your path only when you're in the glowfic server. In any case, you'll use the rake and rails commands in that directory to set up and start the server.

If you have added these scripts to your PATH you can leave off "bin-docker/" in any commands that follow.

Setting up the database

Once you've taken these steps, you should be able to set up the contents of the glowfic database with some example data:

  • bin-docker/rake db:setup

This will set up the database and add some sample information – currently these are users, continuities, characters, galleries, icons and templates; no posts will be created.

If you encounter an error involving the 'citext' extension:

  • Ensure the postgres container is running, with docker-compose up postgres &
  • Execute docker-compose exec postgres psql, and then in the prompt that appears:
  • CREATE EXTENSION IF NOT EXISTS citext;

You will need to re-run bin-docker/rake db:migrate.

Executing the server

The server should have started itself when you ran docker-compose up. When it's started, go to http://localhost:3000/, where you should see a local copy of the Constellation. To stop the server, either close the Terminal or use Ctrl+C to stop the process.

Running tests

To run tests, go to the root of the directory (the 'glowfic' folder) and execute the command:

  • bin-docker/rake spec.

This will go through the rspec tests.

If you encounter a PG::UndefinedTable error, mentioning that a relation doesn't exist, ensure you've also migrated your test database. This can be done with:

  • docker-compose run -e RAILS_ENV=test web rake db:migrate

After this, you should be able to re-run the tests.

Staying up to date

The code updates quite frequently. To make sure you're using and developing against the latest version, you'll need to download the updated copy, update the gems, and possibly even update your version of Ruby.

First, go to the glowfic folder and download the latest code:

  • git pull

Then look at this README again, to make sure the version of Ruby hasn't changed; alternatively, in case this file is not up to date, look at the top of the Gemfile file, where it states the version of ruby. As of writing, this is ruby '2.7.5'. If it has changed, you can rebuild the glowfic image with:

  • docker-compose stop
  • docker-compose build
  • docker-compose up

Now, update the gems used for the project:

  • docker-bin/bundler

And finally, run any database migrations that might have been added in the meantime:

  • docker-bin/rake db:migrate

You should now be able to execute the server, as before but now with the latest updates.

Validation tools

We use the following tools to make sure our code is clean and standards-ctompliant:

We run the following tools through github actions:

CodeClimate runs the following tools automatically:

Tools we do not currently use but are interested in evaluating:

Attribution

We make use of the famfamfam silk pack of icons, which is licensed under a Creative Commons Attribution license, including some icons that have been modified from the originals. These can be found in various locations, including in the dropdown menu in posts.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].