Skip to content

Commit c79102a

Browse files
committed
Initial commit
A fully dockerized create react app with nginx and self signed TLS certifcate
1 parent d9a1430 commit c79102a

30 files changed

+11939
-0
lines changed

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env
17+
.env.local
18+
.env.development.local
19+
.env.test.local
20+
.env.production.local
21+
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*

.idea/dockerizing-react-js-with-nginx-and-self-signed-ssl-certificate.iml

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 299 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# React, Nginx and Self Signed TLS Certificate
2+
3+
### Running the project
4+
1. Run `git clone https://github.com/SamWanekeya/dockerizing-react-js-with-nginx-and-self-signed-ssl-certificate.git .`
5+
4. Run `sh frontend_deploy.sh` from the project root folder to build the images and run the containers
6+
5. Run `sh frontend_destroy.sh` from the project root folder to destroy the running containers
7+
6. Test it out at [https://localhost](https://localhost). No mounted folders. To apply changes, the image must be re-built.
8+
9+
10+
### Contributing
11+
12+
1. Fork this repo and make changes in your own fork.
13+
2. Commit your changes and push to your fork `git push origin master`
14+
3. Create a new pull request and submit it back to the project.
15+
16+
17+
### Bugs & Issues
18+
19+
To report bugs (or any other issues), use the [issues page](https://github.com/Wanekeya/safe-secure-password-generator/issues).

0 commit comments

Comments
 (0)