2
0
Files
bot/README.md
Baptiste Arnaud 5e14a94dea Add authentication
2021-11-29 15:19:07 +01:00

1.3 KiB

Typebot


Quickstart   •   Website   •   Docs   •   Blog   •   Twitter

Development (localhost)

  1. Clone the repo

    git clone https://github.com/Typebot-io/typebot.git
    
  2. Install packages with yarn

    yarn set version berry
    yarn install
    
  3. Copy .env.example to .env

  4. Configure environment variables in the .env file.

  5. Setup the database

    yarn dev:setup
    
  6. Run the applications

    yarn dev:builder
    
    yarn dev:viewer
    
  7. Open Prisma Studio to look at or modify the database content

    yarn db:inspect
    

Deployment

TO-DO