-
Notifications
You must be signed in to change notification settings - Fork 1
How to configure project locally
In order to run the project locally you will need the Postgres database.
- Install Postgres db.
- Create a new database with name 'acs_db'.
- Create a new user with name 'user_acs'.
- Create under the 'acs_db' new schema with name 'acs'.
You are done with installing db!
- Checkout the project using link https://github.com/NaniiGheorghe/AccessControlSystem.git
In order to run your project you need an IDE, for development was used Intellij IDEA. Both client and server projects stays under directory /project/
In the project folder you also will find Maven project, which has 2 sub modules:
- AccessControlSystem-Server
- AccessControlSystem-Client
After you opened the project in an integrated development environment, you will need find a terminal(command line) or some integrated services for executing maven goals.
Execute: mvn clean install
After that execution you database will be populated with new tables, records...
In order to run your application you need to execute the next command in cmd
java -jar acs.war
acs.war is the war file which was generated after compilation
Home Page