You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple way to unify build commands across all your projects running original building steps with all their specifics under the hood. It is agnostic to the underlying build tool, and environment preparatory steps are supported too.
6
+
7
+
## Why?
8
+
9
+
Imagine you are a microservices developer switching around multiple projects written in different languages and built with different building processes. Instead of reading README files all the time learning the specifics of how to run every one of them – you can just capture the configuration once and then use a single unified build command.
10
+
11
+
With the support of preparatory and clean up steps – you can include various environment preparations and have them run as part of the build.
12
+
13
+
## Install
14
+
15
+
```bash
16
+
pip install 1build
17
+
```
18
+
19
+
or
20
+
21
+
```bash
22
+
pip3 install 1build
23
+
```
24
+
25
+
## Usage
26
+
27
+
### Configuration
28
+
29
+
- сreate project configuration file in the project folder
0 commit comments