Universal React Redux Registration
  • Getting Started
  • Backend Project architecture
  • Frontend Project architecture
  • Clone the repository
  • Set-up the Backend
  • Set-up the Frontend
  • JSON Web Tokens
  • Server & Client Bundles
  • Unit tests
  • Create new pages
  • Restrict Access (Authenticated Users Only)
  • Redux-Form
  • Custom Layouts
  • Custom Page titles and SEO
  • SCSS
  • Fonts & Font Icons
  • Images
Powered by GitBook
On this page

Backend Project architecture

Please see below for an overview of our Backend API Project architecture.

├── Backend
│   ├── assets
|   |   └── emailTemplates
|   |       └── reset.hbs
│   ├── config
|   |   ├── custom-environment-variables.json
|   |   └── default.json
│   ├── middleware
|   |   ├── admin.js
|   |   ├── async.js
|   |   ├── auth.js
|   |   └── error.js
│   ├── models
|   |   └── users.js
│   ├── routes
|   |   ├── auth.js
|   |   ├── notFound.js
|   |   └── users.js
│   ├── startup
|   |   ├── config.js
|   |   ├── db.js
|   |   ├── logging.js
|   |   ├── prod.js
|   |   └── routes.js
│   ├── .gitignore
│   ├── index.js
│   ├── LICENSE
│   ├── logfile.log
│   ├── package.json
│   ├── Procfile
│   ├── uncoughtExceptions.log
│   └── webConfig.json
PreviousGetting StartedNextFrontend Project architecture

Last updated 6 years ago