Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
perseusrealdeal authored Oct 2, 2024
0 parents commit 306c055
Show file tree
Hide file tree
Showing 5 changed files with 182 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This is a basic workflow to help you get started with Actions

name: Build & Tests

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: macos-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3

# Runs a single command using the runners shell
- name: Run a one-line script
run: echo Hello, world!

# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.
17 changes: 17 additions & 0 deletions .github/workflows/swiftlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# .github/workflows/swiftlint.yml
name: Style

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
SwiftLint:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- uses: cirruslabs/swiftlint-action@v1
with:
version: latest
49 changes: 49 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## User settings
xcuserdata/

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint
*.DS_Store

## Obj-C/Swift specific
*.hmap

## App packaging
*.ipa
*.dSYM.zip
*.dSYM

# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
# Package.pins
Package.resolved
# *.xcodeproj
#
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
# hence it is not needed unless you have added a package configuration file to your project
.swiftpm

.build/
24 changes: 24 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
MIT License

Copyright © 7531 - 7533 Mikhail A. Zhigulin of Novosibirsk

The year starts from the creation of the world according to a Slavic calendar.
September, the 1st of Slavic year.

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.
56 changes: 56 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# The Technological Tree

> Hereinafter `T3` stands for `The Technological Tree`, also `A3` stads for [`Apple Apps Approbation`](https://docs.google.com/document/d/1K2jOeIknKRRpTEEIPKhxO2H_1eBTof5uTXxyOm5g6nQ/edit?usp=sharing).
## Make a choice

> Every branch represents a custom project template to make easy start of development process.
`Branch 1 Done:` [Xcode-14.2-Component](https://github.com/perseusrealdeal/TheTechnologicalTree/tree/Xcode-14.2-Component)

`Branch 2 In Upgrading:` [Xcode-10.1-iOS-App](https://github.com/perseusrealdeal/TheTechnologicalTree/tree/Xcode-10.1-iOS-App)

`Branch 3 Done:` [Xcode-14.2-macOS-App](https://github.com/perseusrealdeal/TheTechnologicalTree/tree/Xcode-14.2-macOS-App)

> Branches in support to make a great start on early Apple platforms.
`Branch 4 Done:` [Support/Xcode-10.1-Component](https://github.com/perseusrealdeal/TheTechnologicalTree/tree/support/Xcode-10.1-Component)

`Branch 5 Done:` [Support/Xcode-10.1-iOS-App](https://github.com/perseusrealdeal/TheTechnologicalTree/tree/support/Xcode-10.1-iOS-App)

`Branch 6 Done:` [Support/Xcode-10.1-macOS-App](https://github.com/perseusrealdeal/TheTechnologicalTree/tree/support/Xcode-10.1-macOS-App)

## Take action

> Please read the following steps carefully.
`Step 1:` Make a new repository based on the template repository with all included branches

`Step 2:` Apply commits from the target branch into the main branch with cherry-pick command

`Step 3:` Push changes into the main branch then—`the preconfigured project template`—done

`Step 4:` Protect the main branch making possible adding changes only via pull requesting

`Step 5:` The main branch and the target branch—all others should be removed

`Step 6:` Rename the target branch with `v0.0.1`

`Step 7:` Update the target branch `v0.0.1` for the project specifics

`Step 8:` Create a pull request as `v0.0.1`

`Step 9:` Merge a pull request with the main branch—`the initial point of development process`—done

# License MIT

Copyright © 7531 - 7533 Mikhail A. Zhigulin of Novosibirsk

- The year starts from the creation of the world according to a Slavic calendar.
- September, the 1st of Slavic year.

[LICENSE](/LICENSE) for details.

# Editors, prepared by

> Mikhail A. Zhigulin of Novosibirsk

0 comments on commit 306c055

Please sign in to comment.