Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
ut committed Nov 15, 2024
1 parent 881a0ce commit eedafda
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,20 @@ Basic steps for a local installation on your machine:

### Requirements

* Webserver (e.g. Apache or NGINX)
* Passenger stand-alone
* Ruby 2.7+, RVM, Rubygems
#### Development

* Ruby 3.3+, RVM, Rubygems
* MySQL/Maria DB
* ffmpeg (for the video feature), ImageMagick (for the image feature)
* Redis

#### Production

Additional requirements for production

* Webserver (e.g. Apache or NGINX)
* Passenger stand-alone

### Get repository

```bash
Expand All @@ -53,8 +60,8 @@ $ bundle install

```bash
$ sudo mysql -u root
> CREATE USER 'user'@'localhost' IDENTIFIED BY 'password';
> GRANT ALL PRIVILEGES ON *.* TO 'user'@'localhost';
> CREATE USER 'orte'@'localhost' IDENTIFIED BY 'orte00';
> GRANT ALL PRIVILEGES ON *.* TO 'orte'@'localhost';
> CREATE DATABASE orte CHARACTER SET utf8 COLLATE utf8_general_ci;
> CREATE DATABASE orte_test CHARACTER SET utf8 COLLATE utf8_general_ci;
> exit;
Expand Down

0 comments on commit eedafda

Please sign in to comment.