Use codeberg repository instead of Github mirror in instruction

This commit is contained in:
ZhymabekRoman 2024-03-27 22:09:52 +05:00
parent 23bdb73524
commit cb94987ee3

View file

@ -45,16 +45,17 @@ Speed up Freedium, and probably create open source Medium frontend in next life
Requirements: Requirements:
- Docker - Docker
- git
- Linux. Officially, we can't guarantee that Freedium will work on other OS. - Linux. Officially, we can't guarantee that Freedium will work on other OS.
We need configure our Freedium instance. Copy `.env_template` to `.env` configuration file and set values, required for you. We need configure our Freedium instance. Copy `.env_template` to `.env` configuration file and set values, required for you.
``` ```
git clone https://github.com/Freedium-cfd/web ./web git clone https://codeberg.org/Freedium-cfd/web/ ./web --depth 1
cd ./web cd ./web
cp .env_template .env cp .env_template .env
# do some changes in .env, if you want # do some changes in .env, if you want
sudo docker-compose -f docker-compose-dev.yml up sudo docker-compose -f docker-compose-dev.yml up
``` ```
And now you can access local instance of Freedium by opening browser and type `http://localhost:6752`. And now you can access local instance of Freedium by opening browser and type `http://localhost:6752`.