init
This commit is contained in:
51
.gitignore
vendored
Normal file
51
.gitignore
vendored
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
dist*
|
||||||
|
.DS_Store
|
||||||
|
.idea
|
||||||
|
.vscode
|
||||||
|
node_modules
|
||||||
|
*.log
|
||||||
|
tmp
|
||||||
|
temp
|
||||||
|
coverage
|
||||||
|
.nyc_output
|
||||||
|
package-lock.json
|
||||||
|
yarn.lock
|
||||||
|
|
||||||
|
# Ignore dist
|
||||||
|
dist
|
||||||
|
|
||||||
|
# Ignore .cache
|
||||||
|
.cache
|
||||||
|
|
||||||
|
# Ignore .env
|
||||||
|
.env
|
||||||
|
|
||||||
|
# Ignore .env.local
|
||||||
|
.env.local
|
||||||
|
|
||||||
|
# Ignore .env.development.local
|
||||||
|
.env.development.local
|
||||||
|
|
||||||
|
# Ignore .env.test.local
|
||||||
|
.env.test.local
|
||||||
|
|
||||||
|
# Ignore .env.production.local
|
||||||
|
.env.production.local
|
||||||
|
|
||||||
|
# Ignore .npmrc
|
||||||
|
.npmrc
|
||||||
|
|
||||||
|
# Ignore .yarnrc
|
||||||
|
.yarnrc
|
||||||
|
|
||||||
|
# Ignore .yarnclean
|
||||||
|
.yarnclean
|
||||||
|
|
||||||
|
# Ignore .nvmrc
|
||||||
|
.nvmrc
|
||||||
|
|
||||||
|
# Ignore package-lock.json
|
||||||
|
package-lock.json
|
||||||
|
|
||||||
|
# Ignore yarn.lock
|
||||||
|
yarn.lock
|
||||||
19
README.md
Normal file
19
README.md
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
# Nebula
|
||||||
|
|
||||||
|
Nebula is an implementation of the WebAwesome UI Library in Golang Templ syntax.
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
```bash
|
||||||
|
go get github.com/sonr-io/nebula
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
```go
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"github.com/prad/nebula"
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user