CYT is a fork from the repo of the Software Architecture course in 2023/2024 edition. The goal of this project is to provide a fun way of learning and enhancing our general knowledge through an entertaining Q&A game.
Check out deployed docs on github pages for further information, and do not forget to explore our process over the wiki.
This repo is a basic application composed of several components.
- Gateway service. Express service that is exposed to the public and serves as a proxy to the two previous ones.
- User service. Express service that handles the insertion of new users in the system.
- Auth service. Express service that handles the authentication of users.
- Webapp. React web application that uses the gateway service to allow basic login and new user features.
- Jordi. Express service that generates Wikidata-based questions and serves them to the users.
- Ranking Service. Express service that handles the global scoring system of the app.
Both the user and auth service share a Mongo database that is accessed with mongoose.
The fastest way tp launch this sample project is using docker. Just clone the project:
git clone https://github.com/Arquisoft/wiq_es05b.git
Launch it with docker compose:
docker compose --profile dev up --build
And tear it down:
docker compose --profile dev down
Available profiles: "dev" and "prod".
First, start the mongo databases. Either install the mongo server or run them using the latest docker container available:
docker run -d -p 27017:27017 --name=mongo-cyt mongo:latest
You can also use services like Mongo Altas for running a Mongo database in the cloud. Or running a Postgres on your own with the proper schema.
Now, launch the ranking, users, jordis and gateway services. Just go to each directory and run npm install
followed by npm start
.
Lastly, go to the webapp directory and launch this component with npm install
followed by npm start
.
After all the components are launched, the app should be available in localhost in port 3000.
You can also access the public API from the port:8000
.
For the deployment, we have several options.
The first and more flexible is to deploy to a virtual machine using SSH. This will work with any cloud service (or with our own server).
Other options include using the container services that most cloud services provide. This means, deploying our Docker containers directly.
We are going to use the first approach, creating a virtual machine in a cloud service and after installing docker and docker-compose, deploy our containers there using GitHub Actions and SSH.
The machine for deployment can be created in services like Microsoft Azure or Amazon AWS. These are in general the settings that it must have:
- Linux machine with Ubuntu > 20.04.
- Docker and docker-compose installed.
- Open ports for the applications installed (in this case, ports 3000 for the webapp and 8000 for the gateway service).
Once you have the virtual machine created, you can install docker and docker-compose using the following instructions:
sudo apt update
sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable"
sudo apt update
sudo apt install docker-ce
sudo usermod -aG docker ${USER}
sudo curl -L "https://github.com/docker/compose/releases/download/1.28.5/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
Once we have our machine ready, we could deploy by hand the application, taking our docker-compose file and executing it in the remote machine.
In this repository, this process is done automatically using GitHub Actions. The idea is to trigger a series of actions when some condition is met in the repository.
As you can see, unitary tests of each module and e2e tests are executed before pushing the docker images and deploying them. Using this approach we avoid deploying versions that do not pass the tests.
The deploy action is the following:
deploy:
name: Deploy over SSH
runs-on: ubuntu-latest
needs: [docker-push-userservice,docker-push-authservice,docker-push-gatewayservice,docker-push-webapp]
steps:
- name: Deploy over SSH
uses: fifsky/ssh-action@master
with:
host: ${{ secrets.DEPLOY_HOST }}
user: ${{ secrets.DEPLOY_USER }}
key: ${{ secrets.DEPLOY_KEY }}
command: |
wget https://raw.githubusercontent.com/arquisoft/wiq_es05b/master/docker-compose.yml -O docker-compose.yml
wget https://raw.githubusercontent.com/arquisoft/wiq_es05b/master/.env -O .env
docker compose --profile prod down
docker compose --profile prod up -d
This action uses three secrets that must be configured in the repository:
- DEPLOY_HOST: IP of the remote machine.
- DEPLOY_USER: user with permission to execute the commands in the remote machine.
- DEPLOY_KEY: key to authenticate the user in the remote machine.
Note that this action logs in the remote machine and downloads the docker-compose file from the repository and launches it. Obviously, previous actions have been executed which have uploaded the docker images to the GitHub Packages repository.
đ UOId | đ§âđ» Name | đ§ Email | đș GitHub |
---|---|---|---|
UO289295 | Ălvaro GarcĂa | UO289295@uniovi.es | |
UO288787 | Donato MartĂn | UO288787@uniovi.es | |
UO288705 | David Ălvarez | UO288705@uniovi.es | |
UO276255 | Rubén Rubio | UO276255@uniovi.es | |
UO289321 | Luna Valdés | UO289321@uniovi.es |
We would like to extend our special thanks to the following individuals for their valuable contributions and collaborations:
- Thanks to all the JordiBurger Easter Event participants.
- Thanks to Jordi Hurtado for not denouncing us legally.
- Thanks to Omitg24 for the footer I've just stolen.
We are grateful for their support and dedication in making this project a success.
To be continued
- Project
- Docs
- npm package
- OpenApi (For unknown reasons it is necessary to open the link and refresh the URL on the open page or clear the browser cache. #226)
- Grafana
- Kibana