Front-end web app for the official RoBorregos' (international robotics team) web site. Developed by RoBorregos' members and colaborators, in order to publish general information about the team, sponsors, news, competitions and related content. You can consult the application on production at roborregos.com or roborregos.mx.
| Name | Github | Role | |
|---|---|---|---|
| José Eduardo Sánchez | [email protected] | @gallosanchez23 | PM & Developer |
| Sebastián Rivera González | [email protected] | @sebasrivera96 | Developer |
| Aurora Tijerina Berzosa | [email protected] | @aurotb | Developer |
| Ricardo Chapa Romero | [email protected] | @RicardoChapaRomero | Developer |
| José Alfonso Cisneros | [email protected] | @Josecisneros001 | Developer |
| Omar Ulises Montiel | [email protected] | @OUMontiel | Developer |
| Clara Gutiérrez Jaime | [email protected] | @ClaraGtz | Designer & Developer |
| Ana Lucía Garza | [email protected] | @AnaGarza | Designer |
- Production - roborregos.com
You should ask for access to these tools if you don't have it already:
Before setting up the project, you should have installed the following development tools:
- Git
- Docker
- Docker Compose
- Plis (optional, but highly recommended)
- Yarn
Once you have installed the required third-party software, you can follow this steps:
-
Clone the project repository on your local machine.
SSH:
$ git clone [email protected]:gallosanchez23/roborregos-web.git
or HTTPS:
$ git clone https://github.com/gallosanchez23/roborregos-web.git
-
You will need to create the node_modules directory needed to run react apps.
$ yarn install
-
Create the Docker image.
plis:$ plis build
docker-compose:$ docker-compose build
In your terminal, run:
plis:
$ plis start frontend-web && plis attach frontend-webdocker-compose:
$ docker-compose upThis command will start the frontend application and display the logs on your terminal. Use Ctrl + C to exit the logs and turn the application down. Otherwise, in order to run the service in the background, just run:
plis:
$ plis start frontend-webdocker-compose:
$ docker-compose up -dIf the service is already running, you can run the command plis attach frontend-web to attach current service's logs.
NOTE: You can allways run plis run frontend-web bash or docker-compose run frontend-web bash commands to enter the container's console.
In order to stop roborregos-frontend-web entirely you can run:
plis:
$ plis stopdocker-compose:
$ docker-compose stopIf you want to stop the services and remove the containers:
plis:
$ plis downdocker-compose:
$ docker-compose downIf you only want to stop one service in particular, you can specify it with the following command:
plis:
$ plis stop frontend-webdocker-compose:
$ docker-compose stop frontend-web