Add asset stuff back to being included by default for non-Docker users; move more asset-related packages to the group

This commit is contained in:
Jyri-Petteri Paloposki 2024-07-18 23:37:40 +03:00
parent ad87729e31
commit f5f0193b60
3 changed files with 18 additions and 19 deletions

View file

@ -44,7 +44,7 @@ Tracks container. In future there should be an official image in Docker Hub. You
1. Get the Tracks code base by either downloading the archive file for the latest releast or cloning it from GitHub.
2. Run the following command in the Tracks directory to build the image:
```
$ docker build -t="tracks" .
$ docker build -t="tracks" --target=production .
```
1. Make sure you have Docker properly installed.
@ -153,21 +153,21 @@ Tracks is built upon a number of Ruby libraries (known as gems). The Bundl
* If you are using SQLite:
```
bundle config set without "development test mysql"
bundle config set without mysql postgresql
bundle install
```
* If you are using MySQL:
```
bundle config set without "development test sqlite"
bundle config set without sqlite postgresql
bundle install
```
* If you are using PostgreSQL:
```
bundle config set without "development test sqlite mysql"
bundle config set without sqlite mysql
bundle install
```