react-starter-kit
No description available.
File Explorer
Download Latest Version (.zip)- example.json
- render.test.ts
- render.test.ts
- index.js
- commands.js
- index.js
- tsconfig.json
- favicon.ico
- index.html
- manifest.json
- robots.txt
- BaseService.ts
- index.tsx
- index.tsx
- index.tsx
- Routes.tsx
- env.ts
- resource.ts
- useTranslate.ts
- Customer.ts
- index.ts
- ModuleConfig.ts
- RootState.ts
- customer.ts
- LoginInput.test.tsx
- LoginInput.tsx
- SignupInput.test.tsx
- SignupInput.tsx
- index.tsx
- Login.tsx
- Signup.tsx
- auth.ts
- bootstraps.ts
- MainPage.tsx
- bootstraps.ts
- constants.ts
- SamplePage.test.tsx
- SamplePage.tsx
- sample.ts
- sample.ts
- bootstraps.ts
- NotFound.tsx
- index.ts
- customer.ts
- customer.ts
- saga.ts
- customer.ts
- error.ts
- loading.ts
- index.ts
- configureStore.ts
- _mixins.scss
- _variables.scss
- _form.scss
- _modal.scss
- _common.scss
- _reset.scss
- _typography.scss
- _utils.scss
- _footer.scss
- _header.scss
- _home.scss
- _login.scss
- _signup.scss
- app.scss
- Locale.ts
- Resource.ts
- auth.ts
- format.ts
- path.ts
- resource.ts
- en.json
- ko.json
- vi.json
- App.tsx
- index.tsx
- react-app-env.d.ts
- reportWebVitals.ts
- service-worker.ts
- serviceWorkerRegistration.ts
- setupTests.ts
- .dockerignore
- .env-cmdrc
- .eslintrc.js
- .gitignore
- .prettierrc.js
- craco.config.js
- cypress.json
- Dockerfile
- nginx.conf
- package.json
- README.md
- tsconfig.json
- tsconfig.paths.json
- yarn.lock
# Installation Guide
1. Get the code
git clone https://github.com/hoalongnatsu/react-starter-kit
Downloads the entire project code from GitHub to your computer.
cd react-starter-kit
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -t react-starter-kit .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 react-starter-kit
Runs the built image as an actual container.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Node.js
EasyPrerequisites
yarn install
Downloads and installs the libraries listed in package.json.
yarn start:dev
Starts the development/run server.
yarn jest:testing
Type this command into your terminal and run it.
yarn cypress
Type this command into your terminal and run it.
+ yarn start:dev => load env in dev
Starts the development/run server.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
