Skip to content

Commit 577db2c

Browse files
committed
Initial commit
0 parents commit 577db2c

File tree

5 files changed

+131
-0
lines changed

5 files changed

+131
-0
lines changed

.eslintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "./node_modules/@pawjs/pawjs/.eslintrc"
3+
}

.gitignore

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Logs
2+
logs
3+
4+
*.log
5+
npm-debug.log*
6+
yarn-debug.log*
7+
yarn-error.log*
8+
9+
# Runtime data
10+
pids
11+
*.pid
12+
*.seed
13+
*.pid.lock
14+
15+
# Directory for instrumented libs generated by jscoverage/JSCover
16+
lib-cov
17+
18+
# Coverage directory used by tools like istanbul
19+
coverage
20+
21+
# nyc test coverage
22+
.nyc_output
23+
24+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
25+
.grunt
26+
27+
# Bower dependency directory (https://bower.io/)
28+
bower_components
29+
30+
# node-waf configuration
31+
.lock-wscript
32+
33+
# Compiled binary addons (http://nodejs.org/api/addons.html)
34+
build/Release
35+
36+
# Dependency directories
37+
node_modules/
38+
jspm_packages/
39+
40+
# Typescript v1 declaration files
41+
typings/
42+
43+
# Optional npm cache directory
44+
.npm
45+
46+
# Optional eslint cache
47+
.eslintcache
48+
49+
# Optional REPL history
50+
.node_repl_history
51+
52+
# Output of 'npm pack'
53+
*.tgz
54+
55+
# Yarn Integrity file
56+
.yarn-integrity
57+
58+
# dotenv environment variables file
59+
.env
60+
61+
# WebStorm configurations
62+
.idea
63+
64+
# Ignore the etc folders created by
65+
etc/
66+
67+
# Do not add dist to git
68+
dist
69+
70+
# ignore the config assets as its generated runtime and thus should notbe included in git
71+
src/config/assets.js
72+
73+
# Ignore sass cache
74+
.sass-cache

package.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "example-pawjs-tailwind",
3+
"version": "1.0.0",
4+
"description": "Example on using Tailwind CSS with PawJS",
5+
"scripts": {
6+
"start": "pawjs --env=development start",
7+
"build": "pawjs --env=production --config=prod.pawconfig.json build"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/Atyantik/example-pawjs-tailwind.git"
12+
},
13+
"author": {
14+
"name": "Atyantik Technologies",
15+
"email": "admin@atyantik.com",
16+
"url": "https://www.atyantik.com/"
17+
},
18+
"contributors": [
19+
{
20+
"name": "Tirth Bodawala",
21+
"email": "tirthbodawala@atyantik.com",
22+
"url": "https://www.atyantik.com/"
23+
},
24+
{
25+
"name": "Yash Thakur",
26+
"email": "thakur.yash514@gmail.com",
27+
"url": "http://yashthakur.in/"
28+
}
29+
],
30+
"devDependencies": {
31+
"@pawjs/pawjs": "^2.1.10"
32+
},
33+
"license": "MIT",
34+
"bugs": {
35+
"url": "https://github.com/Atyantik/example-pawjs-tailwind/issues"
36+
},
37+
"homepage": "https://github.com/Atyantik/example-pawjs-tailwind#readme"
38+
}

pawconfig.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"port": "3003",
3+
"host": "0.0.0.0",
4+
"appRootUrl": "/",
5+
"serviceWorker": false,
6+
"serverSideRender": true,
7+
"singlePageApplication": false
8+
}

prod.pawconfig.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"port": "9002",
3+
"host": "0.0.0.0",
4+
"appRootUrl": "/example/semantic-ui",
5+
"serviceWorker": false,
6+
"serverSideRender": true,
7+
"singlePageApplication": false
8+
}

0 commit comments

Comments
 (0)