Giter VIP home page Giter VIP logo

nwchecker's Introduction

NWC Checker was console application for checking solution on programming competitions. The new extension to the project is creation java server applicaiton that will be able to perform puniversity competitions in algorithms.

Deployment instructions

Requirements:

  1. Java v1.7 or higher
  2. Apache Tomcat that supports Java 1.7(Tomcat 7 or higher)
  3. MySQL database (if you're cloning repository)
  4. Maven (3.0 or higher)

Instructions:

  1. Clone repository.

  2. Using Maven, create a .war file: in folder ~/nwcserver/ run following command: mvn make-install

  3. Create MySQL schema for server using following command: CREATE DATABASE nwserver CHARACTER SET utf8 COLLATE utf8_general_ci;

  4. grant access privileges to user root with password root on this database:

CREATE USER 'root' IDENTIFIED BY 'root'; GRANT ALL ON root.* TO 'nwserver'@'%' IDENTIFIED BY 'root'; GRANT ALL ON root.* TO 'nwserver'@'localhost' IDENTIFIED BY 'root'; FLUSH PRIVILEGES;

  1. Set max_allowed_packet to 85983232 using:

mysql --max_allowed_packet=85983232

  1. Set lower_case_table_names variable to 1
  • Go to your MySQL configuration file
  • Under [mysqld] add a line: lower_case_table_names=1
  1. Deploy the project on your Tomcat server.

nwchecker's People

Contributors

entro-yuhim avatar chicken91 avatar serhiidovhaniuk avatar kros05 avatar andycv83 avatar roman-zaiats avatar anardael avatar digonkin avatar ionelalupashku avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.