├── .gitignore ├── README.md ├── README_.md ├── courses ├── express │ ├── index.md │ ├── introduction.md │ └── setup.md └── index.md ├── front-end-classics ├── center-div │ ├── index.html │ └── style.css ├── index.html └── reset.css ├── raw ├── emmets.md ├── glossary │ ├── back-end │ │ └── apache-http-server.md │ ├── front-end │ │ └── react.md │ └── index.md ├── how-it-works │ ├── git.md │ └── index.md ├── how-to │ ├── back-end │ │ ├── index.md │ │ └── nest │ │ │ ├── index.md │ │ │ └── setup-static-file-module-but-keep-controller-to-root-with-global-prefix.md │ ├── cms │ │ └── setup-wordpress-on-linux.md │ ├── devops │ │ ├── aws │ │ │ ├── index.md │ │ │ ├── install-docker-on-aws.md │ │ │ ├── running-multiple-web-apps-on-aws.md │ │ │ └── setup-an-aws-ec2-instance-to-run-a-node-app.md │ │ ├── index.md │ │ └── oracle │ │ │ ├── cmds.md │ │ │ └── installs.md │ ├── front-end │ │ ├── bind-your-front-end-app-to-your-backend-api-in-development.md │ │ └── index.md │ ├── git │ │ └── deploy-private-repo-on-server.md │ └── index.md ├── my-tools.md ├── persons │ └── index.md ├── ressources-for │ ├── back-end.md │ ├── free-hosting.md │ ├── front-end.md │ ├── index.md │ ├── learning.md │ ├── monitoring.md │ ├── nice-js-libs.md │ └── to-sort.md ├── shortcuts.md ├── typescript-scenarios.md └── unset │ └── md.md ├── tools ├── .gitkeep └── raw-to-content │ ├── .gitignore │ ├── README.md │ ├── bun.lockb │ ├── index.ts │ ├── package.json │ └── tsconfig.json └── web-projects └── index.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/README.md -------------------------------------------------------------------------------- /README_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/README_.md -------------------------------------------------------------------------------- /courses/express/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/courses/express/index.md -------------------------------------------------------------------------------- /courses/express/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/courses/express/introduction.md -------------------------------------------------------------------------------- /courses/express/setup.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /courses/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /front-end-classics/center-div/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/front-end-classics/center-div/index.html -------------------------------------------------------------------------------- /front-end-classics/center-div/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/front-end-classics/center-div/style.css -------------------------------------------------------------------------------- /front-end-classics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/front-end-classics/index.html -------------------------------------------------------------------------------- /front-end-classics/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/front-end-classics/reset.css -------------------------------------------------------------------------------- /raw/emmets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/emmets.md -------------------------------------------------------------------------------- /raw/glossary/back-end/apache-http-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/glossary/back-end/apache-http-server.md -------------------------------------------------------------------------------- /raw/glossary/front-end/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/glossary/front-end/react.md -------------------------------------------------------------------------------- /raw/glossary/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/glossary/index.md -------------------------------------------------------------------------------- /raw/how-it-works/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/how-it-works/git.md -------------------------------------------------------------------------------- /raw/how-it-works/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/how-it-works/index.md -------------------------------------------------------------------------------- /raw/how-to/back-end/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raw/how-to/back-end/nest/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raw/how-to/back-end/nest/setup-static-file-module-but-keep-controller-to-root-with-global-prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/how-to/back-end/nest/setup-static-file-module-but-keep-controller-to-root-with-global-prefix.md -------------------------------------------------------------------------------- /raw/how-to/cms/setup-wordpress-on-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/how-to/cms/setup-wordpress-on-linux.md -------------------------------------------------------------------------------- /raw/how-to/devops/aws/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raw/how-to/devops/aws/install-docker-on-aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/how-to/devops/aws/install-docker-on-aws.md -------------------------------------------------------------------------------- /raw/how-to/devops/aws/running-multiple-web-apps-on-aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/how-to/devops/aws/running-multiple-web-apps-on-aws.md -------------------------------------------------------------------------------- /raw/how-to/devops/aws/setup-an-aws-ec2-instance-to-run-a-node-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/how-to/devops/aws/setup-an-aws-ec2-instance-to-run-a-node-app.md -------------------------------------------------------------------------------- /raw/how-to/devops/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raw/how-to/devops/oracle/cmds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/how-to/devops/oracle/cmds.md -------------------------------------------------------------------------------- /raw/how-to/devops/oracle/installs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/how-to/devops/oracle/installs.md -------------------------------------------------------------------------------- /raw/how-to/front-end/bind-your-front-end-app-to-your-backend-api-in-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/how-to/front-end/bind-your-front-end-app-to-your-backend-api-in-development.md -------------------------------------------------------------------------------- /raw/how-to/front-end/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raw/how-to/git/deploy-private-repo-on-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/how-to/git/deploy-private-repo-on-server.md -------------------------------------------------------------------------------- /raw/how-to/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/how-to/index.md -------------------------------------------------------------------------------- /raw/my-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/my-tools.md -------------------------------------------------------------------------------- /raw/persons/index.md: -------------------------------------------------------------------------------- 1 | Pierre Grimaud 2 | 3 | Maxime Chevasson -------------------------------------------------------------------------------- /raw/ressources-for/back-end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/ressources-for/back-end.md -------------------------------------------------------------------------------- /raw/ressources-for/free-hosting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/ressources-for/free-hosting.md -------------------------------------------------------------------------------- /raw/ressources-for/front-end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/ressources-for/front-end.md -------------------------------------------------------------------------------- /raw/ressources-for/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raw/ressources-for/learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/ressources-for/learning.md -------------------------------------------------------------------------------- /raw/ressources-for/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/ressources-for/monitoring.md -------------------------------------------------------------------------------- /raw/ressources-for/nice-js-libs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/ressources-for/nice-js-libs.md -------------------------------------------------------------------------------- /raw/ressources-for/to-sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/ressources-for/to-sort.md -------------------------------------------------------------------------------- /raw/shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/shortcuts.md -------------------------------------------------------------------------------- /raw/typescript-scenarios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/typescript-scenarios.md -------------------------------------------------------------------------------- /raw/unset/md.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/raw/unset/md.md -------------------------------------------------------------------------------- /tools/.gitkeep: -------------------------------------------------------------------------------- 1 | # create here a content generator -------------------------------------------------------------------------------- /tools/raw-to-content/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/tools/raw-to-content/.gitignore -------------------------------------------------------------------------------- /tools/raw-to-content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/tools/raw-to-content/README.md -------------------------------------------------------------------------------- /tools/raw-to-content/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/tools/raw-to-content/bun.lockb -------------------------------------------------------------------------------- /tools/raw-to-content/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/tools/raw-to-content/index.ts -------------------------------------------------------------------------------- /tools/raw-to-content/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/tools/raw-to-content/package.json -------------------------------------------------------------------------------- /tools/raw-to-content/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/tools/raw-to-content/tsconfig.json -------------------------------------------------------------------------------- /web-projects/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charles-Chrismann/my-web-development-journey/HEAD/web-projects/index.md --------------------------------------------------------------------------------