1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-09 11:10:05 +00:00

Adding docker config and entrypoint.sh

(cherry picked from commit 014a3584a04e59f204a116bb625e2df5bd70d9bc)
This commit is contained in:
Keith Axline 2020-10-18 11:34:02 +00:00 committed by Bram Wiepjes
parent 30249a8634
commit 3c7a14fc9a
16 changed files with 446 additions and 17 deletions
web-frontend/modules/database

View file

@ -4,6 +4,7 @@ import {
TextFieldType,
LongTextFieldType,
URLFieldType,
EmailFieldType,
LinkRowFieldType,
NumberFieldType,
BooleanFieldType,
@ -54,4 +55,5 @@ export default ({ store, app }) => {
app.$registry.register('field', new BooleanFieldType())
app.$registry.register('field', new DateFieldType())
app.$registry.register('field', new URLFieldType())
app.$registry.register('field', new EmailFieldType())
}