diff --git a/includes/devenv.rust.yaml b/includes/devenv.rust.yaml new file mode 100644 index 0000000..f0b5dbb --- /dev/null +++ b/includes/devenv.rust.yaml @@ -0,0 +1,15 @@ +inputs: + nix2container: + url: github:nlewo/nix2container + inputs: + nixpkgs: + follows: nixpkgs + mk-shell-bin: + url: github:rrbutani/nix-mk-shell-bin + nixpkgs: + url: github:NixOS/nixpkgs/nixpkgs-unstable + fenix: + url: github:nix-community/fenix + inputs: + nixpkgs: + follows: nixpkgs diff --git a/pyproject.toml b/pyproject.toml index 059882e..6a478e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ description = "DataChef's project kickstarter! Reproducible, Declarative and Rel authors = ["Reza (Shahin) Khanipour "] readme = "README.md" packages = [ - { include = "iception", from = "src" }, + { include = "inception", from = "src" }, ] [tool.poetry.dependencies] @@ -27,4 +27,4 @@ version_provider = "scm" tag_format = "v$major.$minor.$patch$prerelease" version_files = [ "src/inception/__init__.py" -] \ No newline at end of file +] diff --git a/template/{% if language == 'Rust' %}{{ project_name }}{% endif %}/devenv.yaml.jina b/template/{% if language == 'Rust' %}{{ project_name }}{% endif %}/devenv.yaml.jina deleted file mode 100644 index 88a05a3..0000000 --- a/template/{% if language == 'Rust' %}{{ project_name }}{% endif %}/devenv.yaml.jina +++ /dev/null @@ -1 +0,0 @@ -{% include pathjoin("includes", "devenv.yaml") %} diff --git a/template/{% if language == 'Rust' %}{{ project_name }}{% endif %}/devenv.yaml.jinja b/template/{% if language == 'Rust' %}{{ project_name }}{% endif %}/devenv.yaml.jinja new file mode 100644 index 0000000..0818bfb --- /dev/null +++ b/template/{% if language == 'Rust' %}{{ project_name }}{% endif %}/devenv.yaml.jinja @@ -0,0 +1 @@ +{% include pathjoin("includes", "devenv.rust.yaml") %}