Skip to content

Commit

Permalink
Merge pull request #68 from Sbcdn/develop
Browse files Browse the repository at this point in the history
cleanup
  • Loading branch information
Sbcdn authored Jan 9, 2024
2 parents d4c9a45 + 4a06b14 commit a9c564e
Show file tree
Hide file tree
Showing 63 changed files with 618 additions and 1,455 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Drasil is an opinionated implementation of a software suite to run applications on Cardano, it is a collection of microservices which, when used together, form an effective and scalable framework for running applications on the Cardano blockchain. Its architecture, services and libraries are written in Rust.

# The codebase is still under development and not considered production ready, use on own risk.
## ! The codebase is under development !

Drasil system and concept was created by Torben and Zak, but it also utilises several tools developed by the Cardano community, to whom we are grateful and hope to continue to repay with our own small contributions. Because of the way in which the various tools interact, more is required to actually run a fully integrated and working "Drasil System" than just the applications and libraries found in this repository! (Redis, RabbitMQ, Cardano-Node, Dbsync, Oura, Postgres)

Expand Down
4 changes: 2 additions & 2 deletions drasil-dvltath/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"
description = "Hashicorp Vault Authorizer Sidecar for Drasil"
repository = "https://github.com/Sbcdn/drasil.git"
documentation = "https://docs.drasil.io"
license = "LICENSE_GPL.md"
readme = "README.md"
license = "https://github.com/Sbcdn/drasil/blob/main/LICENSE.md"
readme = "https://github.com/Sbcdn/drasil/blob/main/README.md"
authors = ["Torben Poguntke <torben@drasil.io>"]

[dependencies]
Expand Down
15 changes: 3 additions & 12 deletions drasil-gungnir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"
description = "Drasil Blockchain Application Framework - Reward Library"
repository = "https://github.com/Sbcdn/drasil.git"
documentation = "https://docs.drasil.io"
license = "LICENSE_GPL.md"
readme = "README.md"
license = "https://github.com/Sbcdn/drasil/blob/main/LICENSE.md"
readme = "https://github.com/Sbcdn/drasil/blob/main/README.md"
authors = ["Torben Poguntke <torben@drasil.io>"]

[dependencies]
Expand Down Expand Up @@ -37,13 +37,4 @@ features = [
"64-column-tables",
"r2d2",
"serde_json",
]


[features]
mimir_bin = ["drasil-mimir", "structopt"]


[[bin]]
name = "create_token_whitelisting"
required-features = ["mimir_bin"]
]
Original file line number Diff line number Diff line change
@@ -1,21 +1,3 @@
-- This file was automatically created by Diesel to setup helper functions
-- and other internal bookkeeping. This file is safe to edit, any future
-- changes will be added to existing projects as new migrations.




-- Sets up a trigger for the given table to automatically set a column called
-- `updated_at` whenever the row is modified (unless `updated_at` was included
-- in the modified columns)
--
-- # Example
--
-- ```sql
-- CREATE TABLE users (id SERIAL PRIMARY KEY, updated_at TIMESTAMP NOT NULL DEFAULT NOW());
--
-- SELECT diesel_manage_updated_at('users');
-- ```
CREATE OR REPLACE FUNCTION diesel_manage_updated_at(_tbl regclass) RETURNS VOID AS $$
BEGIN
EXECUTE format('CREATE TRIGGER set_updated_at BEFORE UPDATE ON %s
Expand Down
Loading

0 comments on commit a9c564e

Please sign in to comment.