2
0

docs: add lp and docs start instructions

This commit is contained in:
Baptiste Arnaud
2022-07-26 07:53:09 +02:00
parent 7d0a526736
commit 22eb48be0b
2 changed files with 27 additions and 6 deletions

View File

@ -50,7 +50,14 @@ Interested in self-hosting Typebot on your server? Take a look at the [self-host
git clone https://github.com/baptisteArno/typebot.io.git
```
2. Set up environment variables
2. Install dependencies
```sh
cd typebot.io
yarn
```
3. Set up environment variables
Copy `apps/builder/.env.local.example` to `apps/builder/.env.local`
@ -58,11 +65,11 @@ Interested in self-hosting Typebot on your server? Take a look at the [self-host
Check out the [Configuration guide](https://docs.typebot.io/self-hosting/configuration) if you want to enable more options
3. Make sure you have [Docker](https://docs.docker.com/compose/install/) running
4. Start the applications.
4. Make sure you have [Docker](https://docs.docker.com/compose/install/) running
5. Start the builder and viewer
```sh
yarn && yarn dev
yarn dev
```
Builder is available at `http://localhost:3000`
@ -73,6 +80,22 @@ Interested in self-hosting Typebot on your server? Take a look at the [self-host
By default, you can easily authenticate in the builder using the "Github Sign In" button. For other options, check out the [Configuration guide](https://docs.typebot.io/self-hosting/configuration)
6. (Optionnal) Start the landing page
Copy `apps/landing-page/.env.local.example` to `apps/landing-page/.env.local`
```sh
cd apps/landing-page
yarn dev
```
7. (Optionnal) Start the docs
```sh
cd apps/docs
yarn start
```
## Contribute
Another great way to support Typebot is to contribute to the project. Head over to the [Contribute guidelines](https://github.com/baptisteArno/typebot.io/blob/main/CONTRIBUTING.md) to get started. 😍