Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 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 (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-05-28T15:27:44.000Z (over 3 years ago)
- Last Synced: 2024-10-28T06:57:09.040Z (3 months ago)
- Topics: bootstrap, css, html, rails, ruby, sass-framework, trix-editor
- Language: Ruby
- Homepage:
- Size: 161 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Text Area with Trix
![enter image description here](https://res.cloudinary.com/dloadb2bx/image/upload/v1622214888/text2_pelyw7.png)
## Technologies
This project was created with:
Gems used:
- [Trix](https://github.com/basecamp/trix)
![enter image description here](https://res.cloudinary.com/dloadb2bx/image/upload/v1622215024/text1a_t5yddi.png)
## 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.