Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikamelashvili/user-base
Project Made with Angular, Bootstrap 5.3 and Spring Boot using JWT for creating and accessing personal information
https://github.com/nikamelashvili/user-base
Last synced: about 2 months ago
JSON representation
Project Made with Angular, Bootstrap 5.3 and Spring Boot using JWT for creating and accessing personal information
- Host: GitHub
- URL: https://github.com/nikamelashvili/user-base
- Owner: NikaMelashvili
- Created: 2024-08-07T19:43:42.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-08-28T22:09:17.000Z (5 months ago)
- Last Synced: 2024-08-28T23:24:58.008Z (5 months ago)
- Language: Java
- Homepage:
- Size: 181 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# User-Base App
***
First, make sure you have Node.js, NPM, Angular 17.3.0, Docker Desktop, Java, and Maven installed.- You can install Node and NPM from here: [Node.js](https://nodejs.org/en/download/package-manager)
- You can install Java from here: [Java](https://www.oracle.com/java/technologies/javase-downloads.html)
- You can install Maven from here: [Maven](https://maven.apache.org/install.html/en/download/package-manager)After installing everything successfully do the following:
### **Angular installation**
```bash
npm install -g @angular/[email protected]
```
```bash
cd User-Base\Registration-Front
```
```bash
ng serve --o
```
***### **MySQL Database**
```bash
docker pull mysql
```
```bash
docker run --name some-mysql -p 3307:3306 -e MYSQL_ROOT_PASSWORD=123 -d mysql:latest
```
```bash
docker exec -it some-mysql mysql -uroot -p
```
```bash
CREATE DATABASE user_registration;
```
After this is done run the SQL provided in the resources/sql directory.
***
### Java-Maven Setup
Make sure to correctly install both Java and Maven and set them in System Variables.
```bash
cd User-Base\Registration-Back
```
```bash
mvn clean compile
```
```bash
mvn spring-boot:run
```
***
#### Project made by [Nikoloz Melashvili](https://www.linkedin.com/in/nikoloz-melashvili/)