Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 2b3d254

Browse files
author
David Dooling
committed
Remove broken links
Remove links to pages that have been removed. [changelog:removed]
1 parent e6872cf commit 2b3d254

File tree

9 files changed

+9
-55
lines changed

9 files changed

+9
-55
lines changed

docs/developer/architecture.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -91,24 +91,9 @@ You can configure the whole pack, or use functions from the pack in your own set
9191

9292
## Connect your SDM
9393

94-
Atomist maintains two implementations of the API for Software:
95-
96-
* [Team mode](team.md): a complete, cloud-based service,
97-
* [Local mode](local.md): an open-source, filesystem-based version that runs on your laptop.
98-
9994
An SDM is most useful when running for your whole team, connected
10095
to the Atomist API for software, Slack, and your version control. Run it on your laptop
10196
while you're testing and modifying the SDM, then in your favorite production environment (on-prem or in the cloud)
10297
for ongoing use.
10398

10499
![Atomist SDM in Team mode](img/sdm-team.png)
105-
106-
If you don't want to subscribe to the Atomist service and hook up Slack and GitHub/BitBucket/GitLab etc,
107-
you're in luck! Run your SDM in [local mode](local.md), on your own machine. Receive push events from your own local commits,
108-
get messages in a terminal feed, and trigger commands on the command line.
109-
110-
![Atomist SDM in Local mode](img/sdm-local.png)
111-
112-
Check the [Developer Quick Start][quick-start] for instructions to get started in local mode.
113-
114-
[quick-start]: ../quick-start.md (Atomist Developer Quick Start)

docs/developer/first_delivery.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ In this flow we will listen to changes made to your README file. On a push to a
44

55
## Prerequisites
66

7-
Before starting, make sure that you have installed [the atomist CLI](/quick-start/) and created [a blank SDM](/developer/sdm/#creating-an-sdm-project). As well, since we'll be working in TypeScript, it's a good idea to [configure your editor](/developer/typescript/) to work with that toolchain. (Remember to run `npm install` in your SDM's folder.)
7+
Before starting, make sure that you have installed [the atomist CLI][cli] and created [a blank SDM](/developer/sdm/#creating-an-sdm-project). As well, since we'll be working in TypeScript, it's a good idea to [configure your editor](/developer/typescript/) to work with that toolchain. (Remember to run `npm install` in your SDM's folder.)
8+
9+
[cli]: https://github.com/atomist/cli (Atomist CLI)
810

911
You also need a local repository that you don't mind making dummy commits and pushes to. We'll be working with [atomist-seeds/express-es6-rest-api](https://github.com/atomist-seeds/express-es6-rest-api). Fork this repository online; to clone it locally and have Atomist's git hooks already configured, run the following command:
1012

docs/developer/index.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,10 @@ If your team uses Atomist, and you want to understand the built-in features, sta
2121

2222
If you want to see examples of the kinds of automation Atomist makes feasible, this is a good place to be.
2323

24-
## Getting Started
25-
26-
Get your own Software Delivery Machine (SDM) by following the steps in [Starting Locally](../quick-start.md).
27-
2824
## Instructions
2925

3026
Once you have a local SDM up and running, here are some things you can do with it:
3127

32-
* Create your own [aspects](aspects.md)
3328
* Add a [chat command](commands.md)
3429
* Add an [autofix](autofix.md)
3530
* Add a [code inspection](inspect.md)
@@ -55,8 +50,6 @@ activities that you won't see in older build tools: [AutoCodeInspect](inspect.md
5550

5651
In addition, there are extension packs that build on the abstractions in the SDM. There is a pack for [build](../pack/build.md) functionality. There are packs to help with languages like [Java](../pack/spring.md) or [Node](../pack/node.md). There are packs specific to deployment targets like [Kubernetes](../pack/kubernetes/index.md) or [Cloud Foundry](../pack/pcf.md). You can create packs and share them with the community.
5752

58-
One interesting pack is the [apsect pack](../pack/aspect.md). This one is used by [org-visualizer](https://github.com/atomist/org-visualizer). With this, your SDM can run analysis over repositories and product data for a [drift report](../user/drift-report.md).
59-
6053
Learn more about the high-level concepts in [Architecture](architecture.md).
6154

6255
## Questions?

docs/developer/sdm.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ This page will help you:
3939
[prereq-prereq]: ../developer/prerequisites.md (Atomist Automation Prerequisites)
4040
[prereq-install-node]: ../developer/prerequisites.md#nodejs (Install Node.js)
4141
[prereq-install-cli]: ../developer/prerequisites.md#atomist-cli (Install the Atomist CLI)
42-
[quick-start]: ../quick-start.md (Developer Quick Start)
43-
44-
For the quickest path to seeing an SDM do something, use the [Quick Start][quick-start] instead.
4542

4643
## Creating an SDM project
4744

docs/developer/tutorials.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
These tutorials are here:
22

3-
* Investigate what you care about in your code by [Defining an Aspect](aspects.md)
43
* Make a great starting point for projects in your organization by [Setting Up a Project Generator](setting-up-generator.md)
54
* Automate changes to code by [Writing your First Code Transform](first-transform.md)
65
* Get ready to deliver your software with an SDM by [Defining an SDM](defining-sdm.md)
76
* Set up that deliver by [Building your First Delivery](first_delivery.md)
87
* Run delivery automations in Kubernetes by [Creating Container Goals](container-goals.md)
98

10-
For even more, check the [Developer Guide](index.md).
9+
For even more, check the [Developer Guide](index.md).

docs/pack/kubernetes/sync.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ There is a corresponding `kube-decrypt` command in the Atomist CLI
176176
should you need to check the secret data values in the repository
177177
specs.
178178

179-
[cli]: ../../quick-start.md (Developer Quick Start)
179+
[cli]: https://github.com/atomist/cli (Atomist CLI)
180180

181181
## Reconciliation
182182

docs/user/dashboard.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,9 @@
1-
21
The Atomist web interface is located at [app.atomist.com](https://app.atomist.com). Here,
32
you can view and manage drift, see some notifications, run GraphQL queries against your data, and administer your
43
Atomist workspace.
54

65
Access the following pages from the symbols on the left navigation bar:
76

8-
## Drift Management
9-
10-
![Drift Management icon](img/left-nav-dm.jpg)
11-
12-
Interact with your [Drift Report](drift-report.md) by clicking this.
13-
147
## Activity
158

169
![Activity icon](img/left-nav-activity.jpg)
@@ -19,11 +12,6 @@ This page shows a list of [Lifecycle Events](lifecycle.md). You can filter it by
1912

2013
This page includes a list of Notifications on the right.
2114

22-
## SDM list
23-
![Software Delivery Machines icon](img/left-nav-sdm.jpg)
24-
25-
[See and administer](sdm-list.md) the Software Delivery Machines (SDMs) in your workspace.
26-
2715
## GraphQL
2816

2917
Atomist constructs a graph of your organization's events, so that you can get the context you need to act on them. For instance, a push is linked to commits which link to people which link to chat users that you can DM. Issues are linked to commits that reference them.

docs/user/github.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1+
Atomist helps you work with GitHub in the following ways:
12

2-
Atomist helps you work with GitHub in three ways:
3-
4-
1. Atomist analyzes the code across your GitHub organization to surface
5-
aspects that reveal [drift](drift-report.md) and other concerns.
63
1. Atomist surfaces your team's development activity, such as pushes,
74
pull requests, or issues, in the Atomist web interface in chat. This
85
visibility is enabled via webhooks.
@@ -29,4 +26,4 @@ behalf. For instance, "@atomist create issue" will open an issue as the person w
2926
Pressing the thumbs-up button on a PR notification will add that reaction as the person who pushed the button in chat.
3027

3128
The first time a person asks Atomist to take an action like this, the Atomist bot will send them a DM to request permission.
32-
This links their GitHub login and chat screen name.
29+
This links their GitHub login and chat screen name.

docs/user/index.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
This page describes enrollment with Atomist as a service.
22

33
Atomist is here to help you smooth your development flow.
4-
Start with gaining insight into the code in your organization, with the
5-
[Drift Report](drift-report.md) in the Atomist web app.
6-
7-
Also in
8-
our web console, you can see consolidated event notifications. Add ChatOps
4+
In our web console, you can see consolidated event notifications. Add ChatOps
95
with Slack or MS Teams if you have it. Spawn your own software delivery machine,
106
and integrate with other tools as you choose.
117

@@ -24,16 +20,13 @@ chat message or DM, and update code by commit or pull request. Automate as much
2420
you choose, and keep people informed for the rest.
2521

2622
You can also use a Software Delivery Machine (SDM) on your laptop,
27-
individually, without enrolling in the service. To get going with a
28-
Local SDM, skip to the [quick start guide][quick-start].
23+
individually, without enrolling in the service.
2924

3025
This page describes how to create an Atomist _workspace_. An Atomist
3126
workspace connects your code, build, deployment, and runtime platforms
3227
into a single, cohesive model of how your team provides value:
3328
delivering great solutions.
3429

35-
[quick-start]: ../quick-start.md (Atomist Developer Quick Start)
36-
3730
## Prerequisites
3831

3932
You must have a Git source code management account, either GitHub.com,

0 commit comments

Comments
 (0)