-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Instrucciones lanzar entorno de desarrollador
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,6 +77,39 @@ First of all, we have to install all the requierements. You have detailed inform | |
|
||
I have encountered several errors when launching the script that creates the developer environment. | ||
|
||
So I had to reinstall nvm this way: | ||
```bash | ||
nvm use 16 | ||
nvm install-latest-npm | ||
``` | ||
|
||
And then reinstall yarn: | ||
```bash | ||
npm uninstall -g yarn | ||
npm install -g yarn | ||
``` | ||
|
||
### How to launch developer enviroment | ||
|
||
```bash | ||
cd <dir>/RoboticsAcademy | ||
``` | ||
First we must launch the frontend like this: | ||
```bash | ||
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash | ||
nvm install 16 | ||
nvm use 16 | ||
cd react_frontend/ && yarn install && yarn run dev | ||
``` | ||
|
||
Finally we launch the script (in other terminal): | ||
```bash | ||
sudo sh scripts/develop_academy.sh | ||
``` | ||
|
||
|
||
Using `Ctrl+c` will stop them. | ||
|
||
## Contact | ||
|
||
You can contact me through [[email protected]](mailto:[email protected]). | ||
|