ci: added pre-commit
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
new file mode 100644
index 0000000..cc39e47
--- /dev/null
+++ b/.pre-commit-config.yaml
@@ -0,0 +1,6 @@
+repos:
+  - repo: https://github.com/compilerla/conventional-pre-commit
+    rev: v2.0.0
+    hooks:
+      - id: conventional-pre-commit
+        stages: [commit-msg]
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..98ea429
--- /dev/null
+++ b/README.md
@@ -0,0 +1,10 @@
+# Atmosphere
+
+## Contributing
+
+You'll need to make sure that you have [`pre-commit`](https://pre-commit.com)
+setup and installed in your environment by running these commands:
+
+```console
+pre-commit install --hook-type commit-msg
+````