Installation
Contents
Every niche is a separate project and they work in it's own folder without requiring files from another route.
Projects
- acorn-react-classic-dashboard
- acorn-react-ecommerce-platform
- acorn-react-elearning-portal
- acorn-react-service-provider
- acorn-react-starter-project
Environment
Acorn contains packages that require a package manager to be installed. You may use npm or yarn. A side note about node version: Please use LTS version(not Current) since some of the plugins don't support current version yet.
Installing Packages
Extract the zip file, navigate to one of the projects and one of the commands below.
npm install
yarn install
Starting Project
Run the app in development mode. The page will automatically reload if you make changes to the code. You will see the build errors and lint warnings in the console.
npm start
yarn start
Creating a Production Build
Build the app for production to the build folder. It correctly bundles React in production mode and optimizes the build for the best performance.
npm run build
yarn build
Deployment
Set up your favorite HTTP server so that a visitor to your site is served index.html, and requests to static paths like /static/js/main.<hash>.js are served with the contents of the /static/js/main.<hash>.js file.
For more information about different server configurations please see cra deployment guilde.