Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
.github/
node_modules/

watcher_trigger/
!watcher_trigger/.gitkeep

data/
!data/.gitkeep

metadata_tmp/

.env
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ metadata/
watcher_trigger/
!watcher_trigger/.gitkeep

data/
!data/.gitkeep

# development
metadata_tmp/

Expand Down
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# (Future) Release 0.0.9
# (Future) Release 0.0.10

- undefined :)
- undefined

# Release 0.0.9

- Added metadata history
- Added support for socket.io and any module that needs reference to the server instance.
- Improved Console UI
- Bugfixes
- Enable file upload through console
- Added more examples to the initial metadata

# Release 0.0.8

Expand Down
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ RUN ["npm", "install"]
# Bundle app source
COPY . .

# Install node_modules in metadata folder on build
RUN cd ./metadata && npm install --only=production

CMD ["npm", "run", "start"]

# This is not ready, there are known bugs with cluster mode (state management between nodes, like path in remote shell etc...)
Expand Down
21 changes: 0 additions & 21 deletions metadata/apps/example_demo_app/errors.demo.js

This file was deleted.

14 changes: 0 additions & 14 deletions metadata/apps/example_demo_app/hasura-request-logger.js

This file was deleted.

21 changes: 0 additions & 21 deletions metadata/apps/example_demo_app/hlambda-config.yaml

This file was deleted.

34 changes: 0 additions & 34 deletions metadata/apps/example_demo_app/router.demo.js

This file was deleted.

21 changes: 0 additions & 21 deletions metadata/apps/example_hasura/errors.demo.js

This file was deleted.

14 changes: 0 additions & 14 deletions metadata/apps/example_hasura/hasura-request-logger.js

This file was deleted.

4 changes: 0 additions & 4 deletions metadata/apps/example_hasura/hlambda-config.yaml

This file was deleted.

26 changes: 0 additions & 26 deletions metadata/apps/example_hasura/router.demo.js

This file was deleted.

Loading