Make sure Postgress is installed Run these commands to create databases
CREATE DATABASE AUTH;
CREATE DATABASE PROF;
CREATE DATABASE STUDENT;
CREATE DATABASE APPLICATION;
- Change secret.yml.template to secret.yml and enter the passwords for your email and db.
NOTE: Use iitk email address, and just add your username, for e.g. : bmerchant22, not [email protected]
-
Run
go mod tidy
-
Run the project:
go run cmd/main.go cmd/auth.go cmd/project.go cmd/student.go cmd/admin.go cmd/prof.go
NOTE: Configs are set for /backend as root, so don't rungo run cmd/main.go cmd/auth.go cmd/project.go cmd/student.go cmd/admin.go
in cmd/
- On postman Enter POST:
http://localhost:8084/api/auth/otp
with payload
{
"user_id": "[email protected]"
}
{
"user_id": "[email protected]"
}
- Then open psql shell and run
\c auth
- Run
select user_id, otp from otps;
- Copy the otp corresponding to the user_id
- Paste it in signup route payload ie, POST
http://localhost:8084/api/auth/signup
Payload
{
"user_id" : "[email protected]",
"name":"Akshat",
"roll_no":"230094",
"roll_no_otp":"otp", //get from step 3
"password" : "password",
"user_otp" : "otp" //get from step 3
}
- Open your psql shell
- Run
\c auth
- Run
UPDATE users set role_id = 100 where user_id = <your_userid> ;
Currently, if you run the project, there are the following services running:
-
Auth: This service will be running on 8084 port of your machine by default, to change it, you can change the config, it has the following routes: a. /api/auth/sendotp (POST): If you hit this route with your user_id in payload (which is your roll no.), you will get an otp on your mail. b. /api/auth/signup (POST): If you hit this route with user_id, username and password, you will be signed up i.e. your details will be saved in the postgresql db running on your local
-
Prof Registration(Only via admin side): Service running on port : 8081, But to access these routes you must have admin role id ie 100, kindly refer how to change role_id
-
To register Prof:
POST: /api/admin/prof
-
To get all registered Prof:
GET: /api/admin/prof
-
To get specific Prof by id:
GET: /api/admin/prof/:pid
-
To Update Prof Prof:
PUT: /api/admin/prof
-
To Delete Prof:
DELETE: /api/admin/prof/:pid
-