This is a simple intranet created with rails and materialize
- ImageMagick (https://www.imagemagick.org)
sudo apt-get update
sudo apt-get install imagemagick libmagickwand-dev
This project use postgres as database, first you need to change the database config on file config/database.yml.example
vim config/database.yml.example (make the changes and save the file)
cp config/database.yml.example config/database.yml (create the database.yml config file)
Create database and migrations
rails db:create
rails db:migrate
rails db:seed (this will create some example posts)
- After start you app, you need to create an user to get access to the posts area, then log on and the menu will be available.