Skip to content

Commit

Permalink
Merge pull request #1 from ajinkyadeshpande/master
Browse files Browse the repository at this point in the history
Merge1
  • Loading branch information
ajinkyadeshpande committed Jun 6, 2017
2 parents 9ebbc40 + 2fc4b54 commit adff369
Show file tree
Hide file tree
Showing 4,310 changed files with 1,826,056 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
/nbproject/private/
21 changes: 21 additions & 0 deletions LICENSE.txt
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2016 Aigars Silkalns & Colorlib

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
14 changes: 14 additions & 0 deletions README.md
@@ -1,2 +1,16 @@
# mystartup
[StartupManager] An all in one free and open source PHP Project that consists of HR+ERP+Accounting+Ideation+Brainstorming+Agile Project management modules for Startups.

MyStartup [StartupManager] Ver: 1.0
Developed by: http://adcorporations.com and http://theadlabs.org ajinkyadeshpande5@gmail.com
MyStartup Developed by Open Source and free to use License based Templates, Software and Tools.
The usage of this software is fully free and its creators do not take any responsibility of any Profit Generated / Loss faced. This tool should be used fully free from any commercial interest and can be taken further for any Commercial Interests by not using this code or any material within this Products’ Scope ever. The Product can be referred for any Commercial Development but none of the resources in this code can be used.
Contents:
HR Module
Agile Project Management
Enterprise Resource Planning
Accounting and Payroll
Startup EcoSystem
BrainStorming and Collaboration

Developed by: http://adcorporations.com and http://theadlabs.org ajinkyadeshpande5@gmail.com
Binary file added Readme_MyStartup.pdf
Binary file not shown.
3 changes: 3 additions & 0 deletions V1/.bowerrc
@@ -0,0 +1,3 @@
{
"directory" : "vendors"
}
4 changes: 4 additions & 0 deletions V1/.gitignore
@@ -0,0 +1,4 @@
nbproject
npm-debug.log
node_modules
.sass-cache
146 changes: 146 additions & 0 deletions V1/DB/hr.sql
@@ -0,0 +1,146 @@
-- phpMyAdmin SQL Dump
-- version 4.5.1
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Feb 18, 2017 at 10:17 PM
-- Server version: 10.1.19-MariaDB
-- PHP Version: 7.0.13

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `hr`
--

-- --------------------------------------------------------

--
-- Table structure for table `cbc`
--

CREATE TABLE `cbc` (
`confirm_code` varchar(65) NOT NULL,
`id` varchar(10) NOT NULL,
`area` varchar(20) NOT NULL,
`cbcmemid` varchar(10) NOT NULL,
`bcat` varchar(100) NOT NULL,
`give` varchar(100) NOT NULL,
`ask` varchar(100) NOT NULL,
`approved` varchar(4) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `directory`
--

CREATE TABLE `directory` (
`uid` varchar(100) NOT NULL,
`name` varchar(100) NOT NULL DEFAULT '',
`Firm` varchar(100) NOT NULL DEFAULT '',
`Description` varchar(100) NOT NULL DEFAULT '',
`Website` varchar(100) NOT NULL,
`Mobile` varchar(100) DEFAULT NULL,
`Location` varchar(100) NOT NULL,
`email` varchar(100) NOT NULL,
`workemail` varchar(100) DEFAULT NULL,
`country` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `registered_members`
--

CREATE TABLE `registered_members` (
`id` int(11) NOT NULL,
`uid` varchar(50) NOT NULL,
`name` varchar(65) NOT NULL DEFAULT '',
`email` varchar(65) NOT NULL DEFAULT '',
`password` varchar(65) NOT NULL DEFAULT '',
`country` varchar(65) NOT NULL DEFAULT '',
`resume` varchar(65) DEFAULT NULL,
`gender` varchar(7) NOT NULL,
`dob` varchar(12) NOT NULL,
`fbid` varchar(200) DEFAULT NULL,
`linkid` varchar(200) DEFAULT NULL,
`gplus` varchar(200) DEFAULT NULL,
`twitter` varchar(200) DEFAULT NULL,
`profilepic` varchar(200) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `temp_members_db`
--

CREATE TABLE `temp_members_db` (
`confirm_code` varchar(65) NOT NULL,
`uid` varchar(40) NOT NULL,
`name` varchar(65) NOT NULL,
`email` varchar(65) NOT NULL,
`password` varchar(65) NOT NULL,
`country` varchar(65) NOT NULL,
`gender` varchar(7) NOT NULL,
`dob` varchar(12) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `user_online`
--

CREATE TABLE `user_online` (
`session` char(100) COLLATE latin1_general_ci NOT NULL DEFAULT '',
`time` int(11) NOT NULL DEFAULT '0',
`host` varchar(100) COLLATE latin1_general_ci NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;

--
-- Indexes for dumped tables
--

--
-- Indexes for table `directory`
--
ALTER TABLE `directory`
ADD PRIMARY KEY (`Firm`);

--
-- Indexes for table `registered_members`
--
ALTER TABLE `registered_members`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `email` (`email`);
ALTER TABLE `registered_members` ADD FULLTEXT KEY `resume` (`resume`);

--
-- Indexes for table `temp_members_db`
--
ALTER TABLE `temp_members_db`
ADD UNIQUE KEY `email` (`email`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `registered_members`
--
ALTER TABLE `registered_members`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

0 comments on commit adff369

Please sign in to comment.