Skip to content

Commit

Permalink
chore: create the basic architecture of the demo application (#6)
Browse files Browse the repository at this point in the history
* Add privacy policy and CGU

* Rename info to about

* Update bundle and application name

* Add swiftlint in build phase

* Update software name in copyright header

* Update resources naming

* Align naming with rules

* Rename assets

* Fix wrong path

Co-authored-by: Ludovic Pinel <[email protected]>
Co-authored-by: Pierre-Yves Lapersonne <[email protected]>
  • Loading branch information
ludovic35 and pylapp committed Jul 9, 2024
1 parent fa72ca0 commit d2ee2c5
Show file tree
Hide file tree
Showing 37 changed files with 4,357 additions and 14 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CHANGELOG.md merge=union
6 changes: 3 additions & 3 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Following these guidelines helps to communicate that you respect the time of the

## Using the Issue Tracker

The [issue tracker](https://github.com/ouds-sandbox/ouds-ios/issues) is the preferred channel for [bug reports](#bug-reports), [feature requests](#feature-requests) and [submitting pull requests](#pull-requests), but please respect the following restrictions:
The [issue tracker](https://github.com/Orange-OpenSource/ouds-ios/issues) is the preferred channel for [bug reports](#bug-reports), [feature requests](#feature-requests) and [submitting pull requests](#pull-requests), but please respect the following restrictions:

- Please **do not** use the issue tracker for personal support requests. [GitHub Discussions](https://github.com/ouds-sandbox/ouds-ios/discussions/categories/q-a) or our internal Orange communication tools are better places to get help.
- Please **do not** use the issue tracker for personal support requests. [GitHub Discussions](https://github.com/Orange-OpenSource/ouds-ios/discussions/categories/q-a) or our internal Orange communication tools are better places to get help.

- Please **do not** derail or troll issues. Keep the discussion on topic and respect the opinions of others.

Expand All @@ -23,7 +23,7 @@ Our bug tracker utilizes several labels to help organize and identify issues. He
- `feature` - Issues asking for a new feature to be added, or an existing one to be extended or modified. New features require a minor version bump (e.g., `v1.0.0` to `v1.1.0`).
- `help wanted` - Issues we need or would love help from the community to resolve.

For a complete look at our labels, see the [project labels page](https://github.com/ouds-sandbox/ouds-ios/labels).
For a complete look at our labels, see the [project labels page](https://github.com/Orange-OpenSource/ouds-ios/labels).

## Bug Reports

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ body:
label: Prerequisites
description: Take a couple minutes to help our maintainers work faster.
options:
- label: I have [searched the backlog](https://github.com/ouds-sandbox/ouds-ios/issues) for duplicate or closed feature requests
- label: I have [searched the backlog](https://github.com/Orange-OpenSource/ouds-ios/issues) for duplicate or closed feature requests
required: true
- type: input
id: device
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ body:
label: Prerequisites
description: Take a couple minutes to help our maintainers work faster.
options:
- label: I have [searched the backlog](https://github.com/ouds-sandbox/ouds-ios/issues) for duplicate or closed feature requests
- label: I have [searched the backlog](https://github.com/Orange-OpenSource/ouds-ios/issues) for duplicate or closed feature requests
required: true
- type: markdown
attributes:
Expand Down
42 changes: 42 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#
# Software Name: OUDS iOS
# SPDX-FileCopyrightText: Copyright (c) Orange SA
# SPDX-License-Identifier: MIT
#
# This software is distributed under the MIT license,
# the text of which is available at https://opensource.org/license/MIT/
# or see the "LICENSE" file for more details.
#
# Authors: See CONTRIBUTORS.txt
# Software description: A SwiftUI components library with code examples for Orange Unified Design System
#

# Classic
*~
.DS_Store
**/.DS_Store

# Produced by Brew
/Brewfile.lock.json

# Produced by CocoaPods
DemoApp/Pods/

# Produced by Xcode
DemoApp/DemoApp.xcodeproj/xcuserdata/
DemoApp.xcworkspace/xcuserdata/
DemoApp/DerivedData/

# Produced by Swift Package Manager
.swiftpm/xcode/xcuserdata/
.swiftpm/xcode/package.xcworkspace/

# Produced by Fastlane
**/fastlane/*.env
**/fastlane/report.xml
**/fastlane/Preview.html
**/fastlane/screenshots/**/*.png
**/fastlane/test_output

# Produced by .gitlab-ci.yml
/.cache/
Loading

0 comments on commit d2ee2c5

Please sign in to comment.