From f0636fab5d44abe5b75cde95c8abf9c988ce61a5 Mon Sep 17 00:00:00 2001 From: codegeek004 Date: Fri, 8 Nov 2024 14:26:10 +0530 Subject: [PATCH 1/4] Setup instructions for local system using docker --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index 7985b078..adce1aef 100644 --- a/README.md +++ b/README.md @@ -25,3 +25,22 @@ License This software is licensed under The MIT License(MIT). See the [LICENSE][LICENSE] file in the top distribution directory for the full license text. [LICENSE]: https://github.com/pythonindia/junction/blob/master/LICENSE + + +

To setup this on your local system. Follow the steps:

+

To start with you have to setup docker on your local system. For that you need docker-compose to be installed on your system.

+

brew install docker-compose for mac
+sudo apt install docker-compose for linux
+

+

Check the path of the docker-compose using
echo $PATH

+

If /usr/local/bin is not in your path, you need to add it.

echo 'export PATH="$PATH:/usr/local/bin"' >> ~/.zshrc
+source ~/.zshrc

+

After accomplishing these steps you need to login into your docker account

+

docker login
If you are using the cli version you need to execute docker login username <\username>

+

After successfully following these steps you can refer to the docs[getting-started] for further execution of the application

+ + + + + + From a9792eaee182321b949720a1cfbce08546515da3 Mon Sep 17 00:00:00 2001 From: codegeek004 Date: Fri, 8 Nov 2024 14:27:28 +0530 Subject: [PATCH 2/4] Setup instructions for local system using docker --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index adce1aef..ff1aaa40 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ This software is licensed under The MIT License(MIT). See the [LICENSE][LICENSE]

Check the path of the docker-compose using
echo $PATH

If /usr/local/bin is not in your path, you need to add it.

echo 'export PATH="$PATH:/usr/local/bin"' >> ~/.zshrc
-source ~/.zshrc

+source ~/.zshrc

After accomplishing these steps you need to login into your docker account

docker login
If you are using the cli version you need to execute docker login username <\username>

After successfully following these steps you can refer to the docs[getting-started] for further execution of the application

From a1ac377dbb7c0069315a84514e919f21d51bd95d Mon Sep 17 00:00:00 2001 From: codegeek004 Date: Fri, 8 Nov 2024 14:29:16 +0530 Subject: [PATCH 3/4] Setup instructions for local system using docker --- README.md | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index ff1aaa40..c77b2fb3 100644 --- a/README.md +++ b/README.md @@ -19,25 +19,24 @@ Contributing [guidelines]: .github/CONTRIBUTING.rst [getting-started]: https://in-junction.readthedocs.io/en/latest/development/getting-started.html -License -------- - -This software is licensed under The MIT License(MIT). See the [LICENSE][LICENSE] file in the top distribution directory for the full license text. - -[LICENSE]: https://github.com/pythonindia/junction/blob/master/LICENSE

To setup this on your local system. Follow the steps:

To start with you have to setup docker on your local system. For that you need docker-compose to be installed on your system.

-

brew install docker-compose for mac
+brew install docker-compose for mac
sudo apt install docker-compose for linux
-

-

Check the path of the docker-compose using
echo $PATH

-

If /usr/local/bin is not in your path, you need to add it.

echo 'export PATH="$PATH:/usr/local/bin"' >> ~/.zshrc
-source ~/.zshrc

+ +Check the path of the docker-compose using
echo $PATH +If /usr/local/bin is not in your path, you need to add it.
echo 'export PATH="$PATH:/usr/local/bin"' >> ~/.zshrc
+source ~/.zshrc

After accomplishing these steps you need to login into your docker account

-

docker login
If you are using the cli version you need to execute docker login username <\username>

-

After successfully following these steps you can refer to the docs[getting-started] for further execution of the application

+docker login
If you are using the cli version you need to execute docker login username <__username__>

After successfully following these steps you can refer to the docs[getting-started] for further execution of the application

+License +------- + +This software is licensed under The MIT License(MIT). See the [LICENSE][LICENSE] file in the top distribution directory for the full license text. + +[LICENSE]: https://github.com/pythonindia/junction/blob/master/LICENSE From a99eb03fa564b71c6dc54293ce6acc05e5d4b4bb Mon Sep 17 00:00:00 2001 From: codegeek004 Date: Fri, 8 Nov 2024 14:31:15 +0530 Subject: [PATCH 4/4] Setup instructions for local system using docker --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c77b2fb3..878d1440 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Contributing -

To setup this on your local system. Follow the steps:

+

To setup this on your local system. Follow the steps:

To start with you have to setup docker on your local system. For that you need docker-compose to be installed on your system.

brew install docker-compose for mac
sudo apt install docker-compose for linux