Skip to content

Commit 53e3040

Browse files
committed
web portal with AGPLv3-or-later
Signed-off-by: Mert Gör <mertgor@qbnetworks.xyz>
0 parents  commit 53e3040

3 files changed

Lines changed: 934 additions & 0 deletions

File tree

.gitignore

Lines changed: 249 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,249 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/emacs
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=emacs
3+
4+
### Emacs ###
5+
# -*- mode: gitignore; -*-
6+
*~
7+
\#*\#
8+
/.emacs.desktop
9+
/.emacs.desktop.lock
10+
*.elc
11+
auto-save-list
12+
tramp
13+
.\#*
14+
15+
# Org-mode
16+
.org-id-locations
17+
*_archive
18+
19+
# flymake-mode
20+
*_flymake.*
21+
22+
# eshell files
23+
/eshell/history
24+
/eshell/lastdir
25+
26+
# elpa packages
27+
/elpa/
28+
29+
# reftex files
30+
*.rel
31+
32+
# AUCTeX auto folder
33+
/auto/
34+
35+
# cask packages
36+
.cask/
37+
dist/
38+
39+
# Flycheck
40+
flycheck_*.el
41+
42+
# server auth directory
43+
/server/
44+
45+
# projectiles files
46+
.projectile
47+
48+
# directory configuration
49+
.dir-locals.el
50+
51+
# network security
52+
/network-security.data
53+
54+
55+
# End of https://www.toptal.com/developers/gitignore/api/emacs
56+
57+
# Created by https://www.toptal.com/developers/gitignore/api/go
58+
# Edit at https://www.toptal.com/developers/gitignore?templates=go
59+
60+
### Go ###
61+
# If you prefer the allow list template instead of the deny list, see community template:
62+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
63+
#
64+
# Binaries for programs and plugins
65+
*.exe
66+
*.exe~
67+
*.dll
68+
*.so
69+
*.dylib
70+
71+
# Test binary, built with `go test -c`
72+
*.test
73+
74+
# Output of the go coverage tool, specifically when used with LiteIDE
75+
*.out
76+
77+
# Dependency directories (remove the comment below to include it)
78+
# vendor/
79+
80+
# Go workspace file
81+
go.work
82+
83+
# End of https://www.toptal.com/developers/gitignore/api/go
84+
85+
# Created by https://www.toptal.com/developers/gitignore/api/react
86+
# Edit at https://www.toptal.com/developers/gitignore?templates=react
87+
88+
### react ###
89+
.DS_*
90+
*.log
91+
logs
92+
**/*.backup.*
93+
**/*.back.*
94+
95+
node_modules
96+
bower_components
97+
98+
*.sublime*
99+
100+
psd
101+
thumb
102+
sketch
103+
104+
# End of https://www.toptal.com/developers/gitignore/api/react
105+
106+
# Created by https://www.toptal.com/developers/gitignore/api/node
107+
# Edit at https://www.toptal.com/developers/gitignore?templates=node
108+
109+
### Node ###
110+
# Logs
111+
logs
112+
*.log
113+
npm-debug.log*
114+
yarn-debug.log*
115+
yarn-error.log*
116+
lerna-debug.log*
117+
.pnpm-debug.log*
118+
119+
# Diagnostic reports (https://nodejs.org/api/report.html)
120+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
121+
122+
# Runtime data
123+
pids
124+
*.pid
125+
*.seed
126+
*.pid.lock
127+
128+
# Directory for instrumented libs generated by jscoverage/JSCover
129+
lib-cov
130+
131+
# Coverage directory used by tools like istanbul
132+
coverage
133+
*.lcov
134+
135+
# nyc test coverage
136+
.nyc_output
137+
138+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
139+
.grunt
140+
141+
# Bower dependency directory (https://bower.io/)
142+
bower_components
143+
144+
# node-waf configuration
145+
.lock-wscript
146+
147+
# Compiled binary addons (https://nodejs.org/api/addons.html)
148+
build/Release
149+
150+
# Dependency directories
151+
node_modules/
152+
jspm_packages/
153+
154+
# Snowpack dependency directory (https://snowpack.dev/)
155+
web_modules/
156+
157+
# TypeScript cache
158+
*.tsbuildinfo
159+
160+
# Optional npm cache directory
161+
.npm
162+
163+
# Optional eslint cache
164+
.eslintcache
165+
166+
# Optional stylelint cache
167+
.stylelintcache
168+
169+
# Microbundle cache
170+
.rpt2_cache/
171+
.rts2_cache_cjs/
172+
.rts2_cache_es/
173+
.rts2_cache_umd/
174+
175+
# Optional REPL history
176+
.node_repl_history
177+
178+
# Output of 'npm pack'
179+
*.tgz
180+
181+
# Yarn Integrity file
182+
.yarn-integrity
183+
184+
# dotenv environment variable files
185+
.env
186+
.env.development.local
187+
.env.test.local
188+
.env.production.local
189+
.env.local
190+
191+
# parcel-bundler cache (https://parceljs.org/)
192+
.cache
193+
.parcel-cache
194+
195+
# Next.js build output
196+
.next
197+
out
198+
199+
# Nuxt.js build / generate output
200+
.nuxt
201+
dist
202+
203+
# Gatsby files
204+
.cache/
205+
# Comment in the public line in if your project uses Gatsby and not Next.js
206+
# https://nextjs.org/blog/next-9-1#public-directory-support
207+
# public
208+
209+
# vuepress build output
210+
.vuepress/dist
211+
212+
# vuepress v2.x temp and cache directory
213+
.temp
214+
215+
# Docusaurus cache and generated files
216+
.docusaurus
217+
218+
# Serverless directories
219+
.serverless/
220+
221+
# FuseBox cache
222+
.fusebox/
223+
224+
# DynamoDB Local files
225+
.dynamodb/
226+
227+
# TernJS port file
228+
.tern-port
229+
230+
# Stores VSCode versions used for testing VSCode extensions
231+
.vscode-test
232+
233+
# yarn v2
234+
.yarn/cache
235+
.yarn/unplugged
236+
.yarn/build-state.yml
237+
.yarn/install-state.gz
238+
.pnp.*
239+
240+
### Node Patch ###
241+
# Serverless Webpack directories
242+
.webpack/
243+
244+
# Optional stylelint cache
245+
246+
# SvelteKit build / generate output
247+
.svelte-kit
248+
249+
# End of https://www.toptal.com/developers/gitignore/api/node

0 commit comments

Comments
 (0)