Skip to content

Commit afecd03

Browse files
committed
Initial commit
0 parents  commit afecd03

File tree

8 files changed

+244
-0
lines changed

8 files changed

+244
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# ignore app.js
2+
app.js
3+
package-lock.json

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# CHANGELOG

CONTRIBUTING.md

Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
# Contributing to CoCreate-xxx
2+
3+
This project is work of [many contributors](https://github.com/CoCreate-app/CoCreate-xxx/graphs/contributors).
4+
You're encouraged to submit [pull requests](https://github.com/CoCreate-app/CoCreate-xxx/pulls),
5+
[propose features and discuss issues](https://github.com/CoCreate-app/CoCreate-xxx/issues).
6+
7+
In the examples below, substitute your Github username for `contributor` in URLs.
8+
9+
## Fork the Project
10+
11+
Fork the [project on Github](https://github.com/CoCreate-app/CoCreate-xxx) and check out your copy.
12+
13+
```
14+
git clone https://github.com/contributor/CoCreate-xxx.git
15+
cd CoCreate-xxx
16+
git remote add upstream https://github.com/CoCreate-app/CoCreate-xxx.git
17+
```
18+
19+
## Create a Topic Branch
20+
21+
Make sure your fork is up-to-date and create a topic branch for your feature or bug fix.
22+
23+
```
24+
git checkout master
25+
git pull upstream master
26+
git checkout -b my-feature-branch
27+
```
28+
29+
## Write Tests
30+
31+
Try to write a test that reproduces the problem you're trying to fix or describes a feature that you want to build.
32+
Add to [spec](spec).
33+
34+
We definitely appreciate pull requests that highlight or reproduce a problem, even without a fix.
35+
36+
## Write Code
37+
38+
Implement your feature or bug fix.
39+
40+
## Write Documentation
41+
42+
Document any external behavior in the [README](README.md).
43+
44+
## Update Changelog
45+
46+
Add a line to [CHANGELOG](CHANGELOG.md) under *Next Release*.
47+
Make it look like every other line, including your name and link to your Github account.
48+
49+
## Commit Changes
50+
51+
Make sure git knows your name and email address:
52+
53+
```
54+
git config --global user.name "Your Name"
55+
git config --global user.email "contributor@example.com"
56+
```
57+
58+
Writing good commit logs is important. A commit log should describe what changed and why.
59+
60+
```
61+
git add ...
62+
git commit
63+
```
64+
65+
## Push
66+
67+
```
68+
git push origin my-feature-branch
69+
```
70+
71+
## Make a Pull Request
72+
73+
Go to [https://github.com/CoCreate-app/CoCreate-xxx](https://github.com/CoCreate-app/CoCreate-xxx) and select your feature branch.
74+
Click the 'Pull Request' button and fill out the form. Pull requests are usually reviewed within a few days.
75+
76+
## Rebase
77+
78+
If you've been working on a change for a while, rebase with upstream/master.
79+
80+
```
81+
git fetch upstream
82+
git rebase upstream/master
83+
git push origin my-feature-branch -f
84+
```
85+
86+
## Update CHANGELOG Again
87+
88+
Update the [CHANGELOG](CHANGELOG.md) with the pull request number. A typical entry looks as follows.
89+
90+
```
91+
* [#123](https://github.com/CoCreate-app/CoCreate-industry/pull/123): Reticulated splines - [@contributor](https://github.com/contributor).
92+
```
93+
94+
Amend your previous commit and force push the changes.
95+
96+
```
97+
git commit --amend
98+
git push origin my-feature-branch -f
99+
```
100+
101+
## Check on Your Pull Request
102+
103+
Go back to your pull request after a few minutes and see whether it passed muster with Travis-CI. Everything should look green, otherwise fix issues and amend your commit as described above.
104+
105+
## Be Patient
106+
107+
It's likely that your change will not be merged and that the nitpicky maintainers will ask you to do more, or fix seemingly benign problems. Hang on there!
108+
109+
## Thank You
110+
111+
Please do know that we really appreciate and value your time and work. We love you, really.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 CoCreate LLC
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# CoCreate-xxx
2+
A simple HTML5 and pure javascript component. Easy configuration using data-attributes and highly styleable.
3+
4+
![CoCreate](https://cdn.cocreate.app/logo.png)
5+
6+
[CoCreate Docs](https://cocreate.app/documentation/CoCreate-xxx)
7+
8+
9+
We want this library to be community-driven, and CoCreate led. We need your help to realize this goal. To help make sure we are building the right things in the right order, we ask that you create [issues](https://github.com/CoCreate-app/Realtime_Admin_CRM_and_CMS/issues) and [pull requests](https://github.com/CoCreate-app/Realtime_Admin_CRM_and_CMS/pulls) or merely upvote or comment on existing issues or pull requests.
10+
11+
We appreciate your continued support, thank you!
12+
13+
# Table of Contents
14+
15+
- [Table of Contents](#table-of-contents)
16+
- [Announcements](#announcements)
17+
- [Roadmap](#roadmap)
18+
- [How to Contribute](#how-to-contribute)
19+
- [About](#about)
20+
- [License](#license)
21+
22+
<a name="announcements"></a>
23+
# Announcements
24+
25+
All updates to this library are documented in our [CHANGELOG](https://github.com/CoCreate-app/CoCreate-industry/blob/master/CHANGELOG.md) and [releases](https://github.com/CoCreate-app/CoCreate-xxx/releases). You may also subscribe to email for releases and breaking changes.
26+
27+
<a name="roadmap"></a>
28+
# Roadmap
29+
30+
If you are interested in the future direction of this project, please take a look at our open [issues](https://github.com/CoCreate-app/CoCreate-industry/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-industry/pulls). We would love to hear your feedback.
31+
32+
33+
<a name="about"></a>
34+
# About
35+
36+
CoCreate-xxx is guided and supported by the CoCreate Developer Experience Team.
37+
38+
Please Email the Developer Experience Team [here](mailto:develop@cocreate.app) in case of any queries.
39+
40+
CoCreate-xxx is maintained and funded by CoCreate. The names and logos for CoCreate are trademarks of CoCreate, LLC.
41+
42+
<a name="contribute"></a>
43+
# How to Contribute
44+
45+
We encourage contribution to our libraries (you might even score some nifty swag), please see our [CONTRIBUTING](https://github.com/CoCreate-app/CoCreate-industry/blob/master/CONTRIBUTING.md) guide for details.
46+
47+
# License
48+
[The MIT License (MIT)](https://github.com/CoCreate-app/CoCreate-industry/blob/master/LICENSE)

demo/CoCreate-xxx.html

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<link rel="icon" href="https://cdn.cocreate.app/favicon.ico" type="image/ico" sizes="16x16">
9+
<title>CoCreate-xxx | CoCreate</title>
10+
<meta name="description" content="Utility first css framework, design faster and improve on your css by using native inline styles as classes. No learning curve, use what you already know" />
11+
<meta name="keywords" content="helper classes, utility classes, css framework, css library, inline style classes" />
12+
<meta name="robots" content="index,follow" />
13+
14+
<!-- CoCreate CSS -->
15+
<link rel="stylesheet" href="https://server.cocreate.app/css/CoCreate.min.css" type="text/css" />
16+
17+
<!-- Font Awesome -->
18+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" crossorigin="anonymous" />
19+
</head>
20+
21+
<body>
22+
23+
24+
25+
<script>
26+
var config = {
27+
apiKey: 'c2b08663-06e3-440c-ef6f-13978b42883a',
28+
securityKey: 'f26baf68-e3a9-45fc-effe-502e47116265',
29+
organization_Id: '5de0387b12e200ea63204d6c'
30+
}
31+
</script>
32+
33+
<!--CoCreateJS-->
34+
<script src="https://server.cocreate.app/js/CoCreate.min.js"></script>
35+
36+
<!--CoCreate Plugins-->
37+
<script src="https://server.cocreate.app/CoCreate-components/CoCreate-action/src/CoCreate-action.js"></script>
38+
39+
</body>
40+
</html>

package.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "CoCreate-action",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "app.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1",
8+
"start":"node app.js"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/CoCreate-app/CoCreate-action.git"
13+
},
14+
"author": "Frank Pagan",
15+
"license": "ISC",
16+
"bugs": {
17+
"url": "https://github.com/CoCreate-app/CoCreate-action/issues"
18+
},
19+
"homepage": "https://github.com/CoCreate-app/CoCreate-action#readme"
20+
}

src/CoCreate-xxx.js

Whitespace-only changes.

0 commit comments

Comments
 (0)