Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Keycloak Russian Providers | 82 | 7 days ago | 8 | February 28, 2022 | apache-2.0 | Java | ||||
Popular russian mail (Yandex, Mail.ru) and social networks (VK, OK) identity providers for Keycloak Identity and Access Management server. | ||||||||||
Hexlet Basics | 64 | 8 days ago | 18 | Ruby | ||||||
Interactive Programming Courses | ||||||||||
Itop Docker | 63 | a year ago | mit | Shell | ||||||
Combodo iTop docker image | ||||||||||
Lacmus App | 49 | 9 months ago | 10 | gpl-3.0 | C# | |||||
lacmus-app | ||||||||||
Mmb | 38 | 5 months ago | 6 | apache-2.0 | Dockerfile | |||||
Set of Dockerfiles and assets related to them for building Docker images with different services | ||||||||||
Ru Bot | 20 | 3 months ago | 30 | TypeScript | ||||||
Daily Hero | 14 | 4 years ago | mit | Python | ||||||
The bot that sends daily closed issues digest to our team | ||||||||||
Docker Lamp | 13 | 10 months ago | Dockerfile | |||||||
LAMP is abbreviate of Linux + Apache + MySQL/MariaDB + PHP and this project is composition of Docker containers for creating a local LAMP | ||||||||||
Sozdik Bot | 13 | 5 years ago | gpl-3.0 | JavaScript | ||||||
🇰🇿🇷🇺 Telegram and Messenger bot for Sozdik, a Russian to Kazakh dictionary | ||||||||||
Mahjong Portal | 12 | a month ago | 22 | mit | Python | |||||
Portal for russian riichi mahjong community |
The project is working with Python 3.6+ only.
It is web-application to accumulate, calculate and display russian riichi-mahjong tournaments and ratings.
You need to have installed docker and docker compose.
Steps to run the project:
make build-docker
make initial-data
(run this command only once, for the initial project setup)make up
After these steps you will be able to access website here: http://0.0.0.0:8060/
You need to have installed docker and docker compose.
Copy .envs/.production.env.example
file and fill it with real data, but don't forget to keep it in secret (at least don't add it to version control system). Assign these env variables to the container with any way that is suits you (there are different options how to do it), and after that you can simply run make build
and make up
commands. By default in production.yml
we are using .envs/.production.env
file.
For static files serving and SSL configuration you need to set up the server upfront of this docker image.
If needed, restore the database backup for the new installation.
On your host machine you can set up these cron commands to make backups:
# every 6 hours
0 */6 * * * cd /root/portal/ && make db-backup backup_type=hourly && /root/upload_files.sh
# once a week
0 0 * * 0 cd /root/portal/ && make db-backup backup_type=weekly && /root/upload_files.sh
# once a month
0 0 2 * * cd /root/portal/ && make db-backup backup_type=monthly && /root/upload_files.sh