← すべてのガイド
Baserow
Baserow is an open-source no-code database platform positioned as an Airtable alternative, with an official all-in-one Docker Compose deployment.
このガイドは上記リンク先にあるBaserow公式ドキュメントをもとに作成されています。ディストリビューションやプロジェクトのバージョンは時間とともに変わるため、本番サーバーでこれらのコマンドを実行する前に、必ず公式ドキュメントで正確なパッケージ名・バージョン名を確認してください。
1Clone the Baserow repository
git clone --depth=1 --branch master https://github.com/baserow/baserow.gitcd baserow2Set required secrets
Edit .env and set your own values for the three required variables: SECRET_KEY, DATABASE_PASSWORD, and REDIS_PASSWORD.
cp .env.example .envBaserow will not start with insecure default values for these three variables.
3Start Baserow
Watch the logs for the message 'Baserow is now available at...' to confirm startup completed.
docker-compose up -ddocker-compose logs -f4Access Baserow
Open http://localhost (port 80/443) and create your first workspace/account through the web UI.