Giter VIP home page Giter VIP logo

curriculum-ng's Introduction

Curriculum App

Here is Everything about Curriculum App
This repository holds whole Content management system.

Your contribution is more than welcomed :)

Project setup

  • Clone the repo git clone https://github.com/navgurukul/Currriculam.git
  • Change the directory cd Currriculamand then Install dependencies npm install

πŸš€ Getting started

develop

Start our Curriculum application with autoReload enabled.
through run command in Developement. Learn more

npm run develop
# or
yarn develop

start

Start your Strapi application with autoReload disabled.
through run command in Production. Learn more

npm run start
# or
yarn start

build

Build your admin panel. Learn more

npm run build
# or
yarn build

Tech Stack

  • NodeJS : We share a love-hate relationship with JavaScript, but our love for it outweighs the hate .
  • PostgreSQL : One of the good things about Postgres is that it is ORDBMS (O for object) rather than just RDMS.

    Strapi Plugin

Strapi Features

Content Manager

  • Quick way to see, edit and delete the data in your database.

Content Type Builder

  • Modelize the data structure of your API. Create new fields and relations in just a minute. The files are automatically created and updated in your project.

wysiwyg(Quill editor)

  • Quill is a powerful, free and open source WYSIWYG editor made for the modern web. Equipped with modern architecture and an expressive API, it’s highly compatible, extensible and customizable to fit any need.

Internationalization

  • This plugin enables to create, to read and to update content in different languages, both from the Admin Panel and from the API.

Code Structure

β”œβ”€β”€β”€β”€ .cache # files used to build the admin panel
β”œβ”€β”€β”€β”€ config # API configurations
β”‚     β”œ api.ts
β”‚     β”œ admin.ts
β”‚     β”œ cron-tasks.ts
β”‚     β”œ database.ts
β”‚     β”œ middlewares.ts
β”‚     β”œ plugins.ts
β”‚     β”” server.ts
β”œβ”€β”€β”€β”€ database
β”‚     └──── migrations
β”œβ”€β”€β”€β”€ dist # build of the backend
β”‚     └──── build # build of the admin panel
β”œβ”€β”€β”€β”€ node_modules # npm packages used by the project
β”œβ”€β”€β”€β”€ public # files accessible to the outside world
β”‚     └──── uploads
β”œβ”€β”€β”€β”€ src
β”‚     β”œβ”€β”€β”€β”€ admin # admin customization files
β”‚     β”‚     β”œβ”€β”€β”€β”€ extensions # files to extend the admin panel
β”‚     β”‚     β”œ app.example.tsx
β”‚     β”‚     β”œ webpack.config.ts
|     |     β”” tsconfig.json
β”‚     β”œβ”€β”€β”€β”€ api # business logic of the project split into subfolders per API
β”‚     β”‚     β”œβ”€β”€β”€β”€ course
β”‚     β”‚     β”‚     β”œβ”€ (content-type)
β”‚     β”‚     β”‚     β”‚      └─ course
β”‚     β”‚     β”‚     β”‚            β”” schema.json
β”‚     β”‚     β”‚     β”œβ”€ controllers
β”‚     β”‚     β”‚     β”‚      └─ course.ts
β”‚     β”‚     β”‚     β”œβ”€ routes
β”‚     β”‚     β”‚     β”‚      └─ course.ts
β”‚     β”‚     β”‚     └─ services
β”‚     β”‚     β”‚            └─ course.ts
β”‚     β”‚     └──── exercise
β”‚     β”‚           β”œβ”€ (content-type)
β”‚     β”‚           β”‚      └─ exercise
β”‚     β”‚           β”‚            β”” schema.json
β”‚     β”‚           β”œβ”€ controllers
β”‚     β”‚           β”‚      └─ exercise.ts
β”‚     β”‚           β”œβ”€ routes
β”‚     β”‚           β”‚      └─ exercise.ts
β”‚     β”‚           └─ services
β”‚     β”‚                  └─ exercise.ts
β”‚     β”œβ”€β”€β”€β”€ extensions
β”‚     β”‚
β”‚     β”œβ”€β”€β”€β”€ plugins # local plugins files
β”‚     β”‚     └─ wysiwyg
β”‚     β”‚        β”œβ”€ admin
β”‚     β”‚        β”‚  └─ src
β”‚     β”‚        β”‚      β”œβ”€ components
β”‚     β”‚        β”‚      β”‚    β”œβ”€ Intitilizer
β”‚     β”‚        β”‚      β”‚    β”‚   └─ index.js
β”‚     β”‚        β”‚      β”‚    β”œβ”€ PluginIcon
β”‚     β”‚        β”‚      β”‚    β”‚   └─ index.js 
β”‚     β”‚        β”‚      β”‚    β”œβ”€ QuillEditor
β”‚     β”‚        β”‚      β”‚    β”‚   └─ index.js
β”‚     β”‚        β”‚      β”‚    └─ Wysiwyg
β”‚     β”‚        β”‚      β”‚        └─ index.js
β”‚     β”‚        β”‚      β”‚
β”‚     β”‚        β”‚      β”œβ”€ pages
β”‚     β”‚        β”‚      β”‚    β”œβ”€ App
β”‚     β”‚        β”‚      β”‚    β”‚   └─ index.js 
β”‚     β”‚        β”‚      β”‚    └─ HomePage
β”‚     β”‚        β”‚      β”‚        └─ index.js
β”‚     β”‚        β”‚      β”‚
β”‚     β”‚        β”‚      β”œβ”€ translaions
β”‚     β”‚        β”‚      β”œβ”€ utils
β”‚     β”‚        β”‚      β”‚    β”œβ”€ axiosInstance.js
β”‚     β”‚        β”‚      β”‚    └─ getTrad.js
β”‚     β”‚        β”‚      β”œβ”€ index.tsx
β”‚     β”‚        β”‚      └─ pluginId.ts
β”‚     β”‚        β”‚ 
β”‚     β”‚        β”œβ”€ node_modules # npm packages used by the quill editor
β”‚     β”‚        β”‚ 
β”‚     β”‚        β”œβ”€ server 
β”‚     β”‚        β”‚  β”œβ”€ config 
β”‚     β”‚        β”‚  β”‚    └─ index.js
β”‚     β”‚        β”‚  β”œβ”€ content-type
β”‚     β”‚        β”‚  β”‚    └─ index.js
β”‚     β”‚        β”‚  β”œβ”€ controllers
β”‚     β”‚        β”‚  β”‚    β”œβ”€ index.js
β”‚     β”‚        β”‚  β”‚    └─ my-controller.js
β”‚     β”‚        β”‚  β”œβ”€ middlewares
β”‚     β”‚        β”‚  β”‚    └─ index.js
β”‚     β”‚        β”‚  β”œβ”€ policies
β”‚     β”‚        β”‚  β”‚    └─ index.js
β”‚     β”‚        β”‚  β”œβ”€ routes
β”‚     β”‚        β”‚  β”‚    └─ index.js
β”‚     β”‚        β”‚  β”œβ”€ services
β”‚     β”‚        β”‚  β”‚    β”œβ”€ index.js
β”‚     β”‚        β”‚  β”‚    └─ my-controller.js
β”‚     β”‚        β”‚  β”œβ”€ bootstrap.js
β”‚     β”‚        β”‚  β”œβ”€ destroy.js
β”‚     β”‚        β”‚  β”œβ”€ index,js
β”‚     β”‚        β”‚  └─ register.js
β”‚     β”‚        β”‚
β”‚     β”‚        β”œβ”€ package.json
β”‚     β”‚        β”œβ”€ strapi-admin.js
β”‚     β”‚        └─ strapi-server.js
β”‚     β”‚    
β”‚     β”” index.ts # include register(), bootstrap() and destroy() functions
β”‚     
β”œ .env
β”œ tsconfig.json
β”” package.json

Happy coding Developers :)

curriculum-ng's People

Contributors

mahendra-shah avatar morningstar03 avatar sanjnapanwar avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.