mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 01:36:29 -05:00
Apply suggestions from code review
Use real backend by default. Start server with NODE_ENV set to development mode. Co-authored-by: David Mehren <git@herrmehren.de> Signed-off-by: Falk Rehse <neuringe1234@gmail.com>
This commit is contained in:
parent
30ab3e3831
commit
ec4d539c99
1 changed files with 4 additions and 7 deletions
|
@ -32,14 +32,11 @@ We will run Hedgedoc in development mode, which means the backend and frontend w
|
|||
The commands will stay active in your terminal, so you will need multiple tabs
|
||||
to run both at the same time.
|
||||
|
||||
1. Enter the `react-frontend` directory and use `yarn start` if you want webpack to continuously rebuild the frontend
|
||||
code.
|
||||
1. Enter the `react-frontend` directory and use `yarn start:for-real-backend` if you want webpack to continuously rebuild the frontend code. The frontend will expect a running backend at port 3000.
|
||||
|
||||
**Note:** Currently, this will not result in the backend and frontend communicating with each other.
|
||||
**Note:** You can run `yarn start` to start a frontend with an integrated, mocked API. This may support more features than the real backend.
|
||||
|
||||
**Note:** You can run `yarn start:for-real-backend` to start a frontend, which tries to connect to a local backend.
|
||||
|
||||
2. To auto-reload the server, enter the `hedgedoc` directory and run `yarn start:dev`.
|
||||
2. To start the server in auto-reload mode, enter the `hedgedoc` directory and run `env NODE_ENV=development yarn start:dev`.
|
||||
|
||||
## Testing
|
||||
|
||||
|
|
Loading…
Reference in a new issue