https://github.com/matthv/rails-demo-forestadmin
https://github.com/matthv/rails-demo-forestadmin
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/matthv/rails-demo-forestadmin
- Owner: matthv
- Created: 2022-05-02T12:41:40.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-09T14:39:17.000Z (almost 2 years ago)
- Last Synced: 2024-10-19T02:30:35.868Z (7 months ago)
- Language: Ruby
- Size: 48.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RAILS DEMO FOREST ADMIN

* [Requirements](#Requirements)
* [Configuration](#Configuration)
* [Serving Rails](#Serving-Rails)# Requirements
- ruby >= 3
# Configuration
### gemfile
update the repositories/url section and add your local forest admin package.
example : */Users/johndoe/.../forest-rails*```
bundle install
```### .env file
```
cp .env.example .env
```
set your database connection (DB section)
By default it's a postgres db### migrate & seed
```
rails db:migrate && rails db:seed
```## Serving Rails
```
rails server
```