A Company is implementing a robust RDBMS to streamline its employment application process. Our goal is to efficiently manage applications, track candidate progress, and enhance communication between recruiters and applicants.
We use a number of open source projects to work properly:
Database design plays a very important part in the Software Development Life Cycle (SDLC). This part includes creating metadata, normalization, and constructing an Entity-Relationship Diagram (ERD).
Metadata
Normalization
ERD
To add, provided here is the .sql file of dbKraft (the database used) if you want to have the database ready.
KRAFT is not yet accessible to the world wide web, as it is yet to be deployed. But, if you're interested in seeing the UI and experience the website yourself, you are in the right section of the README. To get started with accessing the source code, follow the steps below.
You can fork this repository, or you can also clone this repository directly on your local machine.
After cloning the repository on your local machine, access it on any IDE.
After opening the project, you should see all the files
Install dependencies using,
npm install
Create a .env on the server folder and type the code below. Make sure to replace YOUR_DB_PASSWORD_HERE with your actual MariaDB/MySQL/Any RDBMS password.
DATABASE_PASSWORD="YOUR_DB_PASSWORD_HERE"
Configure the database connection in server/config/db.js as per your MariaDB/MySQL/Any RDBMS database environment.
To install the required dependencies for the client folder, see the package.json for the client-side.
To install the required dependencies for the server folder, see the package.json for the server-side.
Run the server on /server.
node server.js
With nodemon, you can run the server using,
npm run server
Run the client on /client.
npm start
Name | Avatar | GitHub | Contributions |
---|---|---|---|
Regina Bonifacio | Feiryrej | Fullstack Developer | |
Isaeus Guiang | asiguiang | Database Administrator, Technical Writer |
The above is the detailed content of Create a Relational Database Application. For more information, please follow other related articles on the PHP Chinese website!