All Projects → arnaugarcia → realstatecamp

arnaugarcia / realstatecamp

Licence: GPL-3.0 License
RealState website using JHipster

Programming Languages

javascript
184084 projects - #8 most used programming language
java
68154 projects - #9 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to realstatecamp

Angular
web项目Demo,前端采用Angular+Grunt+bower+Requirejs+Bootstrap,后台使用SpringMVC框架
Stars: ✭ 16 (-69.23%)
Mutual labels:  bower, spring-mvc
helloworld-web
Hello World web application in 39 different ways in Java
Stars: ✭ 18 (-65.38%)
Mutual labels:  spring-mvc, jhipster
generator-jhipster-react-native
A React Native blueprint for JHipster
Stars: ✭ 234 (+350%)
Mutual labels:  jhipster
svn2git
Tool to help and automate migration from SVN to GitLab
Stars: ✭ 34 (-34.62%)
Mutual labels:  jhipster
Java-learning
Java相关知识总结,包括Java基础、MySQL、Springboot、mybatis、Redis、rabbitMQ等等,面试必备!
Stars: ✭ 267 (+413.46%)
Mutual labels:  spring-mvc
docker-npm
npm, yarn, node, npx, bower, grunt, gulp, generate-md - build and dev tools.
Stars: ✭ 53 (+1.92%)
Mutual labels:  bower
ng-webcam
ngWebcam is an AngularJS directive for capturing images from your computer's camera, and delivering then to you as data uri.
Stars: ✭ 14 (-73.08%)
Mutual labels:  bower
jackson-dynamic-filter
An easy way to determine filters dynamically using Jackson
Stars: ✭ 35 (-32.69%)
Mutual labels:  spring-mvc
DIMS
🐟 数据库系统原理课程设计,Drug Inventory Management System,基于 SSM 框架的医院药品库存管理系统。
Stars: ✭ 49 (-5.77%)
Mutual labels:  spring-mvc
SpringBootDataSourceMutil
spring-boot、Spring MVC、Mybatis、JTA实现多数据源动态切换,读写分离,加入Retry重试机制
Stars: ✭ 19 (-63.46%)
Mutual labels:  spring-mvc
jcart
JCart is a simple e-commerce application built with Spring.
Stars: ✭ 59 (+13.46%)
Mutual labels:  spring-mvc
talos
No description or website provided.
Stars: ✭ 37 (-28.85%)
Mutual labels:  spring-mvc
plotly-plot
Polymer element for the plotly.js library
Stars: ✭ 21 (-59.62%)
Mutual labels:  bower
brunch-wordpress-theme
WordPress Starter Theme That Uses Brunch, Bower, And Bootstrap
Stars: ✭ 15 (-71.15%)
Mutual labels:  bower
gobang04
五子棋社区,前后端完全分离,SSM框架,CORS跨域访问,SSO单点登录,Bootstrap界面,RESTful构架风格,Netty即时通信,Token口令授权,Web端与客户端通信。异步请求,面向接口编程。
Stars: ✭ 14 (-73.08%)
Mutual labels:  spring-mvc
gro-light-automation
A raspberry pi project to automate hydroponics with relays and data sensors through a web application
Stars: ✭ 44 (-15.38%)
Mutual labels:  spring-mvc
pighelper
🐷基于Hybrid+SSM的养猪信息化管理平台,该平台实现了对实时新闻,猪价的爬虫获取,以及各类养殖账单的增删改查等等。该项目适配了移动端界面,最终通过Hybrid混合式App开发技术打包成App,安装在移动端使用
Stars: ✭ 25 (-51.92%)
Mutual labels:  spring-mvc
e-commerce-microservices
REST Microservices architecture for E-commerce with Spring boot, Cloud and multiple modules
Stars: ✭ 102 (+96.15%)
Mutual labels:  spring-mvc
spring02
Spring MVC 연습
Stars: ✭ 17 (-67.31%)
Mutual labels:  spring-mvc
minmin
MinMin - a tiny typescript web framework based on Express
Stars: ✭ 15 (-71.15%)
Mutual labels:  spring-mvc

RealStateCamp

This application was generated using JHipster 3.10.0, you can find documentation and help at https://jhipster.github.io/documentation-archive/v3.10.0.

Development

Before you can build this project, you must install and configure the following dependencies on your machine:

  1. Node.js: We use Node to run a development web server and build the project. Depending on your system, you can install Node either from source or as a pre-packaged bundle.

After installing Node, you should be able to run the following commands to install web development tools.

npm install

bower install

We use Gulp as our build system. Install the Gulp command-line tool globally with:

npm install -g gulp-cli

Run the following commands in two separate terminals to create a blissful development experience where your browser auto-refreshes when files change on your hard drive.

./mvnw
gulp

Bower is used to manage CSS and JavaScript dependencies used in this application. You can upgrade dependencies by specifying a newer version in bower.json. You can also run bower update and bower install to manage dependencies. Add the -h flag on any command to see how you can use it. For example, bower update -h.

For further instructions on how to develop with JHipster, have a look at Using JHipster in development.

Building for production

To optimize the AssessoriaTorrelles application for production, run:

./mvnw -Pprod clean package

This will concatenate and minify the client CSS and JavaScript files. It will also modify index.html so it references these new files. To ensure everything worked, run:

java -jar target/*.war

Then navigate to http://localhost:8080 in your browser.

Refer to Using JHipster in production for more details.

Testing

To launch your application's tests, run:

./mvnw clean test

Client tests

Unit tests are run by Karma and written with Jasmine. They're located in src/test/javascript/ and can be run with:

gulp test

For more information, refer to the Running tests page.

Using Docker to simplify development (optional)

You can use Docker to improve your JHipster development experience. A number of docker-compose configuration are available in the src/main/docker folder to launch required third party services. For example, to start a mysql database in a docker container, run:

docker-compose -f src/main/docker/mysql.yml up -d

To stop it and remove the container, run:

docker-compose -f src/main/docker/mysql.yml down

You can also fully dockerize your application and all the services that it depends on. To achieve this, first build a docker image of your app by running:

./mvnw package -Pprod docker:build

Then run:

docker-compose -f src/main/docker/app.yml up -d

For more information refer to Using Docker and Docker-Compose, this page also contains information on the docker-compose sub-generator (yo jhipster:docker-compose), which is able to generate docker configurations for one or several JHipster applications.

Continuous Integration (optional)

To set up a CI environment, consult the Setting up Continuous Integration page.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].