Skip to content

Commit abc782e

Browse files
committed
Deploying to gh-pages from @ 5eb73af 🚀
1 parent 316fccf commit abc782e

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

additional-documentation/development-setup.html

+18-2
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,24 @@ <h2 id="basic-setup">Basic setup</h2>
9090
</li>
9191
</ol>
9292
<h2 id="advanced-setup">Advanced setup</h2>
93-
<p>Currently, there is nothing which should need an advanced setup.</p>
94-
<h2 id="error-handling">Error handling</h2>
93+
<p>When developing the Web Frontend it is needed sometimes to switch between different release codestreams. In the following, a few examples of the current codestreams can be seen:</p>
94+
<h3 id="main">Main</h3>
95+
<blockquote>
96+
<p>This assumes that you are in the root folder of the backend repository.</p>
97+
</blockquote>
98+
<div><pre class="line-numbers"><code class="language-none">git checkout main
99+
docker build -f docker/develop/develop.dockerfile -t cobbler-dev .
100+
docker run -it --rm --name cobbler-dev -p 80:80 -p 443:443 -v ${PWD}:/code cobbler-dev
101+
make clean
102+
./docker/develop/scripts/setup-supervisor.sh</code></pre></div><h3 id="release33">release33</h3>
103+
<blockquote>
104+
<p>This assumes that you are in the root folder of the backend repository.</p>
105+
</blockquote>
106+
<div><pre class="line-numbers"><code class="language-none">git checkout release33
107+
docker build -f docker/develop/develop.dockerfile -t cobbler-dev:release33 .
108+
docker run -it --rm --name cobbler-dev -p 80:80 -p 443:443 -v ${PWD}:/code cobbler-dev:release33
109+
make clean
110+
./docker/develop/scripts/setup-supervisor.sh</code></pre></div><h2 id="error-handling">Error handling</h2>
95111
<h3 id="cors">CORS</h3>
96112
<p>When you are running Angular applications this is a common issue. Please check the following things:</p>
97113
<ul>

js/search/search_index.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

license.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<div class="content-data">
3333

3434
<p>MIT License</p>
35-
<p>Copyright (c) 2022 Cobbler Project <a href="mailto:&#x63;&#111;&#98;&#x62;&#108;&#101;&#114;&#x2e;&#x70;&#x72;&#x6f;&#x6a;&#x65;&#x63;&#116;&#x40;&#x67;&#x6d;&#97;&#x69;&#108;&#46;&#99;&#111;&#109;">&#x63;&#111;&#98;&#x62;&#108;&#101;&#114;&#x2e;&#x70;&#x72;&#x6f;&#x6a;&#x65;&#x63;&#116;&#x40;&#x67;&#x6d;&#97;&#x69;&#108;&#46;&#99;&#111;&#109;</a></p>
35+
<p>Copyright (c) 2022 Cobbler Project <a href="mailto:&#99;&#x6f;&#98;&#x62;&#108;&#101;&#x72;&#x2e;&#x70;&#114;&#111;&#x6a;&#101;&#99;&#116;&#x40;&#103;&#109;&#x61;&#105;&#108;&#46;&#x63;&#111;&#x6d;">&#99;&#x6f;&#98;&#x62;&#108;&#101;&#x72;&#x2e;&#x70;&#114;&#111;&#x6a;&#101;&#99;&#116;&#x40;&#103;&#109;&#x61;&#105;&#108;&#46;&#x63;&#111;&#x6d;</a></p>
3636
<p>Permission is hereby granted, free of charge, to any person obtaining a copy
3737
of this software and associated documentation files (the &quot;Software&quot;), to deal
3838
in the Software without restriction, including without limitation the rights

0 commit comments

Comments
 (0)