From 840959ec25fdba9e63d8d51d4556300e48426c9f Mon Sep 17 00:00:00 2001 From: Jane Petrovna Date: Fri, 9 Jul 2021 23:03:57 -0400 Subject: [PATCH] crystal init --- .gitignore | 5 +++++ backend/.editorconfig | 9 +++++++++ backend/.gitignore | 5 +++++ backend/.travis.yml | 6 ++++++ backend/LICENSE | 21 +++++++++++++++++++++ backend/README.md | 27 +++++++++++++++++++++++++++ backend/shard.yml | 13 +++++++++++++ backend/spec/backend_spec.cr | 9 +++++++++ backend/spec/spec_helper.cr | 2 ++ backend/src/backend.cr | 6 ++++++ 10 files changed, 103 insertions(+) create mode 100644 backend/.editorconfig create mode 100644 backend/.gitignore create mode 100644 backend/.travis.yml create mode 100644 backend/LICENSE create mode 100644 backend/README.md create mode 100644 backend/shard.yml create mode 100644 backend/spec/backend_spec.cr create mode 100644 backend/spec/spec_helper.cr create mode 100644 backend/src/backend.cr diff --git a/.gitignore b/.gitignore index 50a664d..0397954 100644 --- a/.gitignore +++ b/.gitignore @@ -127,3 +127,8 @@ pnpm-lock.yaml backend/config.json *.pem +/docs/ +/lib/ +/bin/ +/.shards/ +*.dwarf diff --git a/backend/.editorconfig b/backend/.editorconfig new file mode 100644 index 0000000..163eb75 --- /dev/null +++ b/backend/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*.cr] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true diff --git a/backend/.gitignore b/backend/.gitignore new file mode 100644 index 0000000..0bb75ea --- /dev/null +++ b/backend/.gitignore @@ -0,0 +1,5 @@ +/docs/ +/lib/ +/bin/ +/.shards/ +*.dwarf diff --git a/backend/.travis.yml b/backend/.travis.yml new file mode 100644 index 0000000..765f0e9 --- /dev/null +++ b/backend/.travis.yml @@ -0,0 +1,6 @@ +language: crystal + +# Uncomment the following if you'd like Travis to run specs and check code formatting +# script: +# - crystal spec +# - crystal tool format --check diff --git a/backend/LICENSE b/backend/LICENSE new file mode 100644 index 0000000..9689b4f --- /dev/null +++ b/backend/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2021 Jane Petrovna + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/backend/README.md b/backend/README.md new file mode 100644 index 0000000..70887de --- /dev/null +++ b/backend/README.md @@ -0,0 +1,27 @@ +# backend + +TODO: Write a description here + +## Installation + +TODO: Write installation instructions here + +## Usage + +TODO: Write usage instructions here + +## Development + +TODO: Write development instructions here + +## Contributing + +1. Fork it () +2. Create your feature branch (`git checkout -b my-new-feature`) +3. Commit your changes (`git commit -am 'Add some feature'`) +4. Push to the branch (`git push origin my-new-feature`) +5. Create a new Pull Request + +## Contributors + +- [Jane Petrovna](https://github.com/your-github-user) - creator and maintainer diff --git a/backend/shard.yml b/backend/shard.yml new file mode 100644 index 0000000..5af70bb --- /dev/null +++ b/backend/shard.yml @@ -0,0 +1,13 @@ +name: backend +version: 0.1.0 + +authors: + - Jane Petrovna + +targets: + backend: + main: src/backend.cr + +crystal: 1.0.0 + +license: MIT diff --git a/backend/spec/backend_spec.cr b/backend/spec/backend_spec.cr new file mode 100644 index 0000000..197b354 --- /dev/null +++ b/backend/spec/backend_spec.cr @@ -0,0 +1,9 @@ +require "./spec_helper" + +describe Backend do + # TODO: Write tests + + it "works" do + false.should eq(true) + end +end diff --git a/backend/spec/spec_helper.cr b/backend/spec/spec_helper.cr new file mode 100644 index 0000000..4e1e289 --- /dev/null +++ b/backend/spec/spec_helper.cr @@ -0,0 +1,2 @@ +require "spec" +require "../src/backend" diff --git a/backend/src/backend.cr b/backend/src/backend.cr new file mode 100644 index 0000000..4b62aae --- /dev/null +++ b/backend/src/backend.cr @@ -0,0 +1,6 @@ +# TODO: Write documentation for `Backend` +module Backend + VERSION = "0.1.0" + + # TODO: Put your code here +end