Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated sections with config files downloads for simplified downloading #20

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions setup-production.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -375,11 +375,15 @@ It requires you to map the configuration files of `taiga-back` and `taiga-front`

.**Map a `config.py` file **

From https://github.com/kaleidos-ventures/taiga-back[taiga-back] download the file `settings/config.py.prod.example` and rename it:
From https://github.com/kaleidos-ventures/taiga-back[taiga-back] download the files:

- https://raw.githubusercontent.com/kaleidos-ventures/taiga-back/main/settings/common.py[settings/common.py]
- https://raw.githubusercontent.com/kaleidos-ventures/taiga-back/main/settings/config.py.prod.example[settings/config.py.prod.example] - save it as `config.py`:

[source, bash]
----
mv settings/config.py.prod.example settings/config.py
wget https://raw.githubusercontent.com/kaleidos-ventures/taiga-back/main/settings/common.py
wget https://raw.githubusercontent.com/kaleidos-ventures/taiga-back/main/settings/config.py.prod.example -O config.py
----

Edit `config.py` with your own configuration:
Expand Down Expand Up @@ -414,11 +418,11 @@ Map the file into `/taiga-back/settings/config.py`. Have in mind that you have t

.**Map a `conf.json` file**

From https://github.com/kaleidos-ventures/taiga-front[taiga-front] download the file `conf/conf.example.json` and rename it:
From https://github.com/kaleidos-ventures/taiga-front[taiga-front] download the file https://raw.githubusercontent.com/kaleidos-ventures/taiga-front/main/conf/conf.example.json[conf/conf.example.json] - save it as `conf.json`:

[source,bash]
----
mv conf.example.json conf.json
wget https://raw.githubusercontent.com/kaleidos-ventures/taiga-front/main/conf/conf.example.json -O conf.json
----

Edit it with your own configuration:
Expand Down