-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7b604eb
commit 74ab4d4
Showing
9 changed files
with
428 additions
and
428 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
sidebar_position: 60 | ||
--- | ||
|
||
# Add Content | ||
# Add Content NEW | ||
|
||
:::warning | ||
|
||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
--- | ||
sidebar_position: 100 | ||
--- | ||
|
||
# Migration Processn NEW | ||
|
||
:::warning | ||
|
||
Work in process | ||
|
||
::: | ||
|
||
|
||
## Overview: | ||
This process details how to transition from Spec-Up to Spec-Up-T to utilize its enhanced features. | ||
|
||
## Steps: | ||
|
||
1. **Pre-Migration Setup:** | ||
- Back up critical files: | ||
```bash | ||
cp specs.json specs-backup.json | ||
cp package.json package-backup.json | ||
``` | ||
- Download the latest `specs.json` template for Spec-Up-T from the official repository. | ||
|
||
2. **Modify Spec-Up Installation:** | ||
- Replace the `specs.json` structure with the updated version for Spec-Up-T. | ||
- Add `terms-and-definitions-intro.md` to the `/spec` directory: | ||
```bash | ||
touch spec/terms-and-definitions-intro.md | ||
``` | ||
|
||
3. **Organize Terms:** | ||
- Place all term files in the directory specified in `specs.json` under `spec_terms_directory`. | ||
- Reorganize the glossary order using `terms-index.json`. Optionally prefix file names with order numbers for custom sorting. | ||
|
||
4. **Update Dependencies:** | ||
- Delete `node_modules` and `package-lock.json`: | ||
```bash | ||
rm -rf node_modules package-lock.json | ||
``` | ||
- Install Spec-Up-T: | ||
```bash | ||
npm install | ||
``` | ||
|
||
5. **Generate Specification:** | ||
- Use the menu to add terms and generate the specification: | ||
```bash | ||
npm run menu | ||
``` | ||
|
||
6. **Finalize Migration:** | ||
- Confirm the following are present: | ||
- Updated `specs.json`. | ||
- Organized `/spec` directory. | ||
- `docs/` directory containing the generated `index.html` file. | ||
- Push the migrated repository to GitHub. | ||
|
||
--- |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.