Skip to content

Commit

Permalink
docs: add doc in readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentC35 committed Jan 7, 2025
1 parent 73dcf62 commit a1862e5
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,34 @@ Pogues is a questionnaire design and test tool.
---

The developer documentation can be found in the [doc](https://github.com/InseeFr/Pogues/tree/master/docs) folder and [browsed online](https://inseefr.github.io/Bowie/pogues).

## Developer

There are currently two versions in this depot:

- the **legacy** app, code base is located at root
- the **next** app, code base is located at [next](./next/) folder.

### How to dev ?

- To develop the legacy version, simply continue developing in the code base.
- To develop the next version, simply work in the next folder, as for a normal application.

But if you want to see both at the same time, you'll need to build and serve both applications:

1. Build and serve **legacy** app

```bash
yarn
yarn build
yarn preview
```

2. In another terminal : Build and serve **next** app

```bash
cd next
yarn
yarn build
yarn preview
```

0 comments on commit a1862e5

Please sign in to comment.