https://github.com/thiagohrcosta/actiontext-rails
A simple project to implement a Action Text with Trix in Rails.
https://github.com/thiagohrcosta/actiontext-rails
bootstrap css html rails ruby sass-framework trix-editor
Last synced: 2 months ago
JSON representation
A simple project to implement a Action Text with Trix in Rails.
- Host: GitHub
- URL: https://github.com/thiagohrcosta/actiontext-rails
- Owner: thiagohrcosta
- Created: 2021-05-28T14:15:28.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-28T15:27:44.000Z (about 5 years ago)
- Last Synced: 2025-07-10T21:38:20.851Z (11 months ago)
- Topics: bootstrap, css, html, rails, ruby, sass-framework, trix-editor
- Language: Ruby
- Homepage:
- Size: 161 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Text Area with Trix

## Technologies
This project was created with:

Gems used:
- [Trix](https://github.com/basecamp/trix)

## How to run this project
Download or clone it. . Then run in the main folder the command `rails server`. You can always run `rails db:reset`, to restore database and run the migrations or seeds. If needed, run `bundle install` to check if all gems are correctly installed. Then open the project on `localhost:3000/posts`.
## What user can do?
- User can create a new post;
- User can edit a post;
- User can see a post;
- User can use Action Text with trix to format text.
## Developer routine
** May 28 **
- Project created with rails;
- Add scaffold;
- Add model and controller post;
- Run migrations;
- Add CSS and Bootstrap to main pages.