Skip to content
Merged

Dev #1065

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a0e1b8a
refactor: enhance WordPress block processing and content handling
aishwarya-cstk May 7, 2026
31e2ce7
docs: update README with installation instructions and usage guidelines
aishwarya-cstk May 7, 2026
50c0746
refactor: streamline locale mapping process in createContentfulMapper…
yashin4112 May 7, 2026
bf7c93f
refactor: enhance marketplace client initialization and improve SSO t…
shobhit-cstk May 7, 2026
bac81d3
Merge branch 'dev' into bugfix/CMG-904
shobhit-cstk May 7, 2026
80e5be9
Merge branch 'dev' of github.com:contentstack/migration-v2 into featu…
aishwarya-cstk May 7, 2026
385d315
refactor: PR commenst of null checks
aishwarya-cstk May 7, 2026
3239f10
test: update WordPress controller tests for axios request order and a…
aishwarya-cstk May 7, 2026
f592232
refactor: enhance entry filtering in WordPress service according to s…
aishwarya-cstk May 7, 2026
8f8d58d
refactor: simplify media field handling in schemaMapper function
aishwarya-cstk May 7, 2026
9453525
Merge branch 'dev' of github.com:contentstack/migration-v2 into featu…
aishwarya-cstk May 7, 2026
227e40e
refactor: resolved copilot comments
aishwarya-cstk May 8, 2026
37bd965
Merge branch 'dev' into bugfix/contentful-locale-dropdown
umesh-more-cstk May 8, 2026
58f075a
Merge pull request #1060 from contentstack/bugfix/contentful-locale-d…
umesh-more-cstk May 8, 2026
afcdaa1
Merge branch 'dev' of github.com:contentstack/migration-v2 into featu…
aishwarya-cstk May 8, 2026
660bb9f
Merge branch 'dev' into bugfix/CMG-904
umesh-more-cstk May 8, 2026
eee1485
Merge pull request #1062 from contentstack/bugfix/CMG-904
umesh-more-cstk May 8, 2026
1c9e71f
Merge branch 'dev' into feature/cmg-705
umesh-more-cstk May 8, 2026
7ef19d1
fix: move drupal locale save API call before mapper creation to fix e…
yashin4112 May 8, 2026
64985d9
fix: null check added on config
yashin4112 May 8, 2026
e647070
refactor: improve HTML formatting logic in formatChildByType function
aishwarya-cstk May 8, 2026
b313b5a
Merge branch 'dev' of github.com:contentstack/migration-v2 into featu…
aishwarya-cstk May 8, 2026
2fb7b80
Merge branch 'feature/cmg-705' of github.com:contentstack/migration-v…
aishwarya-cstk May 8, 2026
9bd03c8
Merge pull request #1059 from contentstack/feature/cmg-705
umesh-more-cstk May 8, 2026
0c3bf57
Merge branch 'dev' into bugfix/cmg-913
umesh-more-cstk May 8, 2026
cfcd3a7
Merge pull request #1064 from contentstack/bugfix/cmg-913
shradha-nahar May 8, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 30 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,38 @@ Check for readme.md files and install dependencies for folders

This is the migration V2's node server.

### Installation

1. Navigate to the project directory:

```sh
cd api
```

2. Install the dependencies:
```sh
npm install
```

### Environment Variables

The following environment variables are used in this project:

- `APP_TOKEN_KEY`: The token key for the application. Default is `MIGRATION_V2`.
- `PORT`: The port number on which the application runs. Default is `5001`.

Make sure to set these variables in a `.env` file at the root of your project.
Make sure to set these variables in a `.env` file at the root of your api project.

1. To run the development server, create a `./development.env` file and add environment variables as per `./example.env`
2. To run the production server, create a `./production.env` file and add environment variables as per `./example.env`

### To start the server

Run `npm run dev`
Run :

```sh
`npm run dev`
```

## Migration UI

Expand Down Expand Up @@ -105,7 +122,7 @@ The migration-v2 upload-api project is designed to facilitate the migration of d
Navigate to the project directory:

```
cd migration-v2/upload-api
cd upload-api
```

Install dependencies:
Expand All @@ -121,7 +138,7 @@ The following environment variables are used in this project:
- `PORT`: The port number on which the application runs. Default is `4002`.
- `NODE_BACKEND_API`: The backend API endpoint. Default is `http://localhost:5001`.

Make sure to set these variables in a `.env` file at the root of your project.
Make sure to set these variables in a `.env` file at the root of your upload-api project.

### Configuration

Expand Down Expand Up @@ -155,6 +172,14 @@ The following configuration is used in this project:
- `npm run postinstall`: Installs dependencies for the api, ui, and upload-api directories.
- `npm test`: Displays an error message indicating that no tests are specified.

### Usage

Start the development server:

```sh
npm start
```

## Repository

- Type: git
Expand Down Expand Up @@ -202,4 +227,4 @@ The author information is not specified.

## Contact

For further assistance, please contact the project maintainer through the issues page on GitHub.
For further assistance, please contact the project maintainer through the issues page on GitHub.
Loading
Loading