Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

uniclass #10

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions Classroom-dev/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
.env

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/frontend/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
3 changes: 3 additions & 0 deletions Classroom-dev/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"git.ignoreLimitWarning": true
}
1 change: 1 addition & 0 deletions Classroom-dev/Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
web: node backend/server.js
30 changes: 30 additions & 0 deletions Classroom-dev/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# E-learning Platform Using MERN
## MAIN GOAL
#### The main of this project was to built a platform that enable insctructors to sell their knowledge and teach people a lot of skills.
## DEMO
##### here is the demo : [EDUSPACE](https://e-duspace.herokuapp.com/)

## TECHS
In this project we have used these technologies :
+ React js
+ Nodejs (Express js)
+ [Ant D](https://github.com/ant-design/ant-design)
+ Mongo DB
+ Redux
+ Google apis
+ Cloudinary
## Usage
To run this project you can simply type in the terminal :
```bash
npm run dev
```
And it will run a script named dev which runs both server(nodemon) and client(react start script) apps.

## Preview
Here is some hidden parts of the project which only the admin or the teach can acess it :
+ Admin profile
![admin panel](https://i.imgur.com/6IVGNUk.png)
+ Teacher profile
![Teacher panel](https://i.imgur.com/t3u0Abf.png)
+ Edit a course:
![EDIT](https://i.imgur.com/lc2YrBz.png)
23 changes: 23 additions & 0 deletions Classroom-dev/backend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
Loading