guto-alves / everyone

Everyone is a clothing store website built for the semiannual work of the discipline Software Engineering Laboratory at FATEC ZL.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Everyone

Everyone is a clothing store website built for the semiannual work of the discipline Software Engineering Laboratory at FATEC ZL.

Running Everyone locally

Everyone is a Spring Boot application built using Maven. You can build a jar file and run it from the command line:

git clone https://github.com/guto-alves/everyone.git
cd everyone
./mvnw package
java -jar target/*.jar

You can then access Everyone here: http://localhost:8080/clothes

everyone-screenshot

Or you can run it from Maven directly using the Spring Boot Maven plugin. If you do this it will pick up changes that you make in the project immediately (changes to Java source files require a compile as well - most people use an IDE for this):

./mvnw spring-boot:run

Login as Everyone Admin

Admin Account

Logged in as an administrator, you can see a special drop-down menu in the navigation bar:

Admin nav item

Working with Everyone in your IDE

Prerequisites

The following items should be installed in your system:

Steps:

  1. On the command line

    git clone https://github.com/guto-alves/everyone.git
    
  2. Inside Eclipse or STS

    File -> Import -> Maven -> Existing Maven project
    

    Then either build on the command line ./mvnw generate-resources or using the Eclipse launcher (right click on project and Run As -> Maven install) to generate the css. Run the application main method by right clicking on it and choosing Run As -> Java Application.

  3. Inside IntelliJ IDEA In the main menu, choose File -> Open and select the Everyone pom.xml. Click on the Open button.

    CSS files are generated from the Maven build. You can either build them on the command line ./mvnw generate-resources or right click on the everyone project then Maven -> Generates sources and Update Folders.

    A run configuration named EveryoneApplication should have been created for you if you're using a recent Ultimate version. Otherwise, run the application by right clicking on the EveryoneApplication main class and choosing Run 'EveryoneApplication'.

  4. Navigate to Everyone

    Visit http://localhost:8080/clothes in your browser.

License

The Everyone application is licensed under the MIT License - see the LICENSE file for details.

About

Everyone is a clothing store website built for the semiannual work of the discipline Software Engineering Laboratory at FATEC ZL.

License:MIT License


Languages

Language:Java 57.2%Language:HTML 38.2%Language:TSQL 3.8%Language:CSS 0.9%