forked from macagua/slc-sitioweb
-
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.
Updated the documentation files and source code
- Loading branch information
Showing
4 changed files
with
53 additions
and
6 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# 2023-05-11 | ||
|
||
- Initial version [ScrumLATAMComunidad] | ||
- Initial version [macagua] |
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 |
---|---|---|
|
@@ -8,6 +8,7 @@ The `Scrum Latam Comunidad <https://www.scrumlatamcomunidad.com/>`_ Website repo | |
A new SCRUM LATAM Comunidad Website using Plone 6 and Volto | ||
technologies. | ||
|
||
|
||
Quick start | ||
----------- | ||
|
||
|
@@ -19,20 +20,62 @@ Development Setup | |
- yarn | ||
- Docker | ||
|
||
|
||
Install | ||
~~~~~~~ | ||
|
||
Install the requirements dependencies: | ||
|
||
.. code:: shell | ||
sudo apt install build-essential python3-dev python3-venv git tree curl | ||
Install `Node Version Manager - NVM <https://github.com/nvm-sh/nvm/blob/master/README.md>`_: | ||
|
||
.. code:: shell | ||
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash | ||
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" \ | ||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | ||
source ~/.bashrc | ||
exit | ||
Install Node 16 Version: | ||
|
||
.. code:: shell | ||
nvm install 16 | ||
nvm use 16 | ||
Install `yarn <https://yarnpkg.com/>`_ tool: | ||
|
||
.. code:: shell | ||
git clone [email protected]:ScrumLATAMComunidad/slc-sitioweb.git | ||
cd slc-sitioweb | ||
sudo apt install make python3-venv | ||
npm install --global yarn | ||
Clone and install the git repository: | ||
|
||
.. code:: shell | ||
git clone [email protected]:ScrumLATAMComunidad/slc-sitioweb.git slc-sitioweb && cd $_ | ||
Install the dev stack: | ||
|
||
.. code:: shell | ||
make install | ||
Start | ||
~~~~~ | ||
|
||
Open two consoles to run each of the following commands in each of them: | ||
|
||
Start the Backend (http://localhost:8080/) | ||
|
||
.. code:: shell | ||
|
@@ -63,6 +106,8 @@ This monorepo is composed by two distinct codebases: api and frontend. | |
- **backend**: API (Backend) Plone installation using ``pip`` (not | ||
*buildout*). Includes a policy package named ``slc_sitioweb``. More | ||
details information at `backend/src/slc_sitioweb/README.md <backend/src/slc_sitioweb/README.md>`_ file. | ||
- **devops**: Devops Deployments scripts por this monorepo. More details | ||
information at `devops/README.md <frontend/README.md>`_ file. | ||
- **frontend**: React (Volto) package named frontend. More details | ||
information at `frontend/README.md <frontend/README.md>`_ file. | ||
|
||
|
@@ -84,7 +129,7 @@ automatically format them, you can run | |
|
||
``make format`` | ||
|
||
in the root folder or especifically in each backend or frontend folders. | ||
in the root folder or specifically in each backend or frontend folders. | ||
|
||
Linters commands are available in each backend and frontend folder. | ||
|
||
|
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
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