Skip to content

Commit 31d2c8c

Browse files
Writerside initialized
1 parent a05d549 commit 31d2c8c

14 files changed

Lines changed: 203 additions & 42 deletions

docs/c.list

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE categories
3+
SYSTEM "https://resources.jetbrains.com/writerside/1.0/categories.dtd">
4+
<categories>
5+
<category id="wrs" name="Writerside documentation" order="1"/>
6+
</categories>

docs/cfg/buildprofiles.xml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<buildprofiles xsi:noNamespaceSchemaLocation="https://resources.jetbrains.com/writerside/1.0/build-profiles.xsd"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3+
<variables>
4+
<!-- <algolia-api-key>1830e628456a000ddfeb32941f42a78c</algolia-api-key>-->
5+
<!-- <algolia-id>K2N865FUBK</algolia-id>-->
6+
<!-- <algolia-index>laravel-lang</algolia-index>-->
7+
<generate-canonicals>true</generate-canonicals>
8+
<header-logo>logo.svg</header-logo>
9+
<locale-code>en_US</locale-code>
10+
<og-image>
11+
https://raw.githubusercontent.com/TheDragonCode/art/main/splash/github.png
12+
</og-image>
13+
<color-preset>contrast</color-preset>
14+
<primary-color>frozen</primary-color>
15+
<web-root>https://deploy-operations.dragon-code.pro</web-root>
16+
<enable-browser-edits>true</enable-browser-edits>
17+
<browser-edits-url>
18+
https://github.com/TheDragonCode/laravel-deploy-operations/edit/main/docs/
19+
</browser-edits-url>
20+
<custom-favicons>
21+
favicon.svg,favicon.svg,favicon.svg,favicon.svg
22+
</custom-favicons>
23+
</variables>
24+
<build-profile instance="deploy-operations">
25+
<variables>
26+
<noindex-content>false</noindex-content>
27+
</variables>
28+
</build-profile>
29+
<sitemap priority="0.5" change-frequency="weekly"/>
30+
<footer>
31+
<link href="https://github.com/TheDragonCode/laravel-deploy-operations">
32+
GitHub
33+
</link>
34+
<link href="https://github.com/TheDragonCode/laravel-deploy-operations/issues">
35+
Issues
36+
</link>
37+
</footer>
38+
</buildprofiles>

docs/deploy-operations.tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE instance-profile
3+
SYSTEM "https://resources.jetbrains.com/writerside/1.0/product-profile.dtd">
4+
5+
<instance-profile id="deploy-operations"
6+
name="Laravel Deploy Operations"
7+
start-page="introduction.topic">
8+
9+
<toc-element topic="introduction.topic"/>
10+
<toc-element topic="license.topic" toc-title="License"/>
11+
</instance-profile>
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

docs/images/badge-supported.svg

Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

docs/images/favicon.svg

Lines changed: 40 additions & 0 deletions
Loading

docs/snippets/.gitkeep

Whitespace-only changes.

docs/topics/introduction.topic

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE topic
3+
SYSTEM "https://resources.jetbrains.com/writerside/1.0/xhtml-entities.dtd">
4+
<topic xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:noNamespaceSchemaLocation="https://resources.jetbrains.com/writerside/1.0/topic.v2.xsd"
6+
title="Introduction" id="introduction">
7+
8+
<p>
9+
<img
10+
src="https://preview.dragon-code.pro/the-dragon-code/deploy-operations.svg?brand=laravel&amp;mode=dark"
11+
alt="%instance%"
12+
/>
13+
</p>
14+
<p>
15+
<a href="%link-packagist%"><img src="%badge-stable%" alt="stable"/></a>
16+
<a href="%link-repository%"><img src="%badge-downloads%" alt="downloads"/></a>
17+
<a href="%link-workflows%"><img src="%badge-build%" alt="build"/></a>
18+
<a href="license.topic"><img src="%badge-license%" alt="license"/></a>
19+
</p>
20+
<p>
21+
22+
<control>Performing any actions during the deployment process</control>
23+
</p>
24+
<p>
25+
Create specific classes for a one-time or more-time usage, that can be executed automatically after each
26+
deployment.
27+
Perfect for seeding or updating some data instantly after some database changes, feature updates, or perform any
28+
actions.
29+
</p>
30+
<p>
31+
This package is for you if...
32+
</p>
33+
<list>
34+
<li>you regularly need to update specific data after you deploy new code</li>
35+
<li>you often perform jobs after deployment</li>
36+
<li>you sometimes forget to execute that one specific job and stuff gets crazy</li>
37+
<li>your code gets cluttered with jobs that are not being used anymore</li>
38+
<li>your co-workers always need to be reminded to execute that one job after some database changes</li>
39+
<li>you often seed or process data in a migration file (which is a big no-no!)</li>
40+
</list>
41+
</topic>

0 commit comments

Comments
 (0)