Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sleshjdev/flowerty
Flowers store service with web ui on java
https://github.com/sleshjdev/flowerty
Last synced: about 2 months ago
JSON representation
Flowers store service with web ui on java
- Host: GitHub
- URL: https://github.com/sleshjdev/flowerty
- Owner: sleshJdev
- Created: 2015-03-17T10:43:05.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-08T19:52:09.000Z (over 9 years ago)
- Last Synced: 2023-08-28T04:24:50.610Z (over 1 year ago)
- Language: Java
- Size: 63.3 MB
- Stars: 0
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flowerty
Flowers store service with web ui on Java.### version
1.0.0### stack of technologies:
* [Hibernate] - great orm for java.
* [AngularJS] - html enhanced for web apps!
* [Twitter Bootstrap] - great UI boilerplate for modern web apps.
* [Spring] - ioc container for manage of bean.
* [MySQL] - the world's most popular open source database.
* [MongoDb] - is an open-source document database, and the leading nosql database.### mongodb
http://docs.mongodb.org/manual/tutorial/### setup ActiveMQ
1. download distribution: http://activemq.apache.org/activemq-5111-release.html
2. extract to any folder
3. open terminal
4. in terminal: move to 'extract-activemq-folder'/bin
5. execute command: java -jar activemq.jar startactivemq must start without errors
>note: to shutdown activemq need press Ctrl+C
### setup Apache Solr
initial setup:
1. download Solr from http://www.apache.org/dyn/closer.cgi/lucene/solr/5.1.0
2. extract it to any folder you prefer
3. visit http://localhost:8983/solr/ to see it's going ok
4. put "solr" folder to solr-5.1.0/server
5. put "cloud" folder to solr-5.1.0/example> note: (you don't need them in the project folder anymore)
6. go to solr-5.1.0/bin and execute:
> solr start -e cloud -noprompt
7. when it asks about replacing log files, choose all
> it opens two windows. don't close them until you don't need solr anymore!
>note: if somesing doesn't work try running "solr restart -all" from the same bin folder to stop it run solr stop -all or close those two windows
after update:
1. start solr by "solr start" command from bin folder
2. copy solr-update.bat to the same bin folder.execute it
3. copy solr folder to the same place as the last time (solr-5.1.0/server)### solr update (multicore)
to add a multicore for solr, execute, .bat the file as follow below:
```
solr create_core -c "flowerty-contact" -d basic_configs -p 8983
solr create_core -c "flowerty-purchase" -d basic_configs -p 8983
pause
```