Skip to content

Commit c2996ec

Browse files
committed
add whitepaper readme
Author: @codingsh <codingsh@pm.me> Date: Tue Mar 3 04:32:00 2020 -0300
0 parents  commit c2996ec

30 files changed

+26406
-0
lines changed

.babelrc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"env": {
3+
"test": {
4+
"presets": [
5+
[
6+
"@babel/preset-env",
7+
{
8+
"targets": {
9+
"node": "current"
10+
}
11+
}
12+
]
13+
]
14+
}
15+
}
16+
}

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.eslintrc.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
browser: true,
5+
node: true
6+
},
7+
parserOptions: {
8+
parser: 'babel-eslint'
9+
},
10+
extends: [
11+
'@nuxtjs',
12+
'prettier',
13+
'prettier/vue',
14+
'plugin:prettier/recommended',
15+
'plugin:nuxt/recommended'
16+
],
17+
plugins: [
18+
'prettier'
19+
],
20+
// add your custom rules here
21+
rules: {
22+
'nuxt/no-cjs-in-config': 'off'
23+
}
24+
}

.github/semantic.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Always validate the PR title AND all the commits
2+
titleAndCommits: true
3+
# Allows use of Merge commits (eg on github: "Merge branch 'master' into feature/ride-unicorns")
4+
# this is only relevant when using commitsOnly: true (or titleAndCommits: true)
5+
allowMergeCommits: true

.gitignore

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Node template
3+
# Logs
4+
/logs
5+
*.log
6+
npm-debug.log*
7+
yarn-debug.log*
8+
yarn-error.log*
9+
10+
# Runtime data
11+
pids
12+
*.pid
13+
*.seed
14+
*.pid.lock
15+
16+
# Directory for instrumented libs generated by jscoverage/JSCover
17+
lib-cov
18+
19+
# Coverage directory used by tools like istanbul
20+
coverage
21+
22+
# nyc test coverage
23+
.nyc_output
24+
25+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
26+
.grunt
27+
28+
# Bower dependency directory (https://bower.io/)
29+
bower_components
30+
31+
# node-waf configuration
32+
.lock-wscript
33+
34+
# Compiled binary addons (https://nodejs.org/api/addons.html)
35+
build/Release
36+
37+
# Dependency directories
38+
node_modules/
39+
jspm_packages/
40+
41+
# TypeScript v1 declaration files
42+
typings/
43+
44+
# Optional npm cache directory
45+
.npm
46+
47+
# Optional eslint cache
48+
.eslintcache
49+
50+
# Optional REPL history
51+
.node_repl_history
52+
53+
# Output of 'npm pack'
54+
*.tgz
55+
56+
# Yarn Integrity file
57+
.yarn-integrity
58+
59+
# dotenv environment variables file
60+
.env
61+
62+
# parcel-bundler cache (https://parceljs.org/)
63+
.cache
64+
65+
# next.js build output
66+
.next
67+
68+
# nuxt.js build output
69+
.nuxt
70+
71+
# Nuxt generate
72+
dist
73+
74+
# vuepress build output
75+
.vuepress/dist
76+
77+
# Serverless directories
78+
.serverless
79+
80+
# IDE / Editor
81+
.idea
82+
83+
# Service worker
84+
sw.*
85+
86+
# macOS
87+
.DS_Store
88+
89+
# Vim swap files
90+
*.swp

.prettierrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"semi": false,
3+
"arrowParens": "always",
4+
"singleQuote": true
5+
}

README.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# RealCodeCamp
2+
3+
> learning code, teaching code and earn money
4+
5+
6+
### The problem
7+
8+
There are currently thousands of developers starting their careers, not knowing where to start and to start this developer needs a large amount of available time and money to pay for courses that cost up to $ 11,000 a year. This is very expensive for a young person who is starting a career or for someone who is changing areas and migrating to a career in technology. The market is very heated and this gives rise to N platforms, frameworks, companies etc. But with all this information, the young man asks himself, "Where can I start? Do I need to study python? Do I need to study algorithms?"
9+
10+
We can focus on some important issues:
11+
12+
- price
13+
- idiom
14+
- learning curve
15+
- new languages.
16+
17+
### The solution
18+
19+
Real Code Camp is a mentoring platform "on the road" which means "on the move". We are attentive to the market and the changes that occur on a daily basis and our main focus is to encourage developers to develop technology for web 3.0 and web 4.0, so we will go through all branches of technology working with real projects. Today there are thousands of issues open on github. Among these issues there are problems that pay for each solution. We at Real Code Camp help developers to contribute to the open source world and get paid for it. We believe that a more inclusive and participatory movement begins to transform the technology of the future once and for all.
20+
21+
## Build Setup
22+
23+
``` bash
24+
# install dependencies
25+
$ yarn install
26+
27+
# serve with hot reload at localhost:3000
28+
$ yarn dev
29+
30+
# build for production and launch server
31+
$ yarn build
32+
$ yarn start
33+
34+
# generate static project
35+
$ yarn generate
36+
```
37+
38+
### Social Networks
39+
[Discord](http://bit.ly/DiscordRealCodeCamp)
40+
[Twitter](http://bit.ly/twitter.com/realcodecamp)
41+
[Instagram](http://instagram.com/realcodecamp)
42+
[Gitcoin](http://bit.ly/gitcoinBRIT-UK)
43+
44+
[Real Code Camp - GitCoin Grants](http://bit.ly/gitcoinRealCodeCamp).

assets/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# ASSETS
2+
3+
**This directory is not required, you can delete it if you don't want to use it.**
4+
5+
This directory contains your un-compiled assets such as LESS, SASS, or JavaScript.
6+
7+
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#webpacked).

assets/css/tailwind.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/* purgecss start ignore */
2+
@import 'tailwindcss/base';
3+
@import 'tailwindcss/components';
4+
/* purgecss end ignore */
5+
@import 'tailwindcss/utilities';

components/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# COMPONENTS
2+
3+
**This directory is not required, you can delete it if you don't want to use it.**
4+
5+
The components directory contains your Vue.js Components.
6+
7+
_Nuxt.js doesn't supercharge these components._

0 commit comments

Comments
 (0)