You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Andrew Wallo 30b9260413
Update README.md
2 年之前
app wip: Added many new functionalities 2 年之前
bootstrap - v1 new file: .editorconfig new file: .env.example new file: .gitattributes new file: .gitignore new file: README.md new file: app/Console/Kernel.php new file: app/Exceptions/Handler.php new file: app/Http/Controllers/Controller.php new file: app/Http/Kernel.php new file: app/Http/Middleware/Authenticate.php new file: app/Http/Middleware/EncryptCookies.php new file: app/Http/Middleware/PreventRequestsDuringMaintenance.php new file: app/Http/Middleware/RedirectIfAuthenticated.php new file: app/Http/Middleware/TrimStrings.php new file: app/Http/Middleware/TrustHosts.php new file: app/Http/Middleware/TrustProxies.php new file: app/Http/Middleware/ValidateSignature.php new file: app/Http/Middleware/VerifyCsrfToken.php new file: app/Models/User.php new file: app/Providers/AppServiceProvider.php new file: app/Providers/AuthServiceProvider.php new file: app/Providers/BroadcastServiceProvider.php new file: app/Providers/EventServiceProvider.php new file: app/Providers/RouteServiceProvider.php new file: artisan new file: bootstrap/app.php new file: bootstrap/cache/.gitignore new file: composer.json new file: composer.lock new file: config/app.php new file: config/auth.php new file: config/broadcasting.php new file: config/cache.php new file: config/cors.php new file: config/database.php new file: config/filesystems.php new file: config/hashing.php new file: config/logging.php new file: config/mail.php new file: config/queue.php new file: config/sanctum.php new file: config/services.php new file: config/session.php new file: config/view.php new file: database/.gitignore new file: database/factories/UserFactory.php new file: database/migrations/2014_10_12_000000_create_users_table.php new file: database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php new file: database/migrations/2019_08_19_000000_create_failed_jobs_table.php new file: database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php new file: database/seeders/DatabaseSeeder.php new file: package.json new file: phpunit.xml new file: public/.htaccess new file: public/favicon.ico new file: public/index.php new file: public/robots.txt new file: resources/css/app.css new file: resources/js/app.js new file: resources/js/bootstrap.js new file: resources/views/welcome.blade.php new file: routes/api.php new file: routes/channels.php new file: routes/console.php new file: routes/web.php new file: storage/app/.gitignore new file: storage/app/public/.gitignore new file: storage/framework/.gitignore new file: storage/framework/cache/.gitignore new file: storage/framework/cache/data/.gitignore new file: storage/framework/sessions/.gitignore new file: storage/framework/testing/.gitignore new file: storage/framework/views/.gitignore new file: storage/logs/.gitignore new file: tests/CreatesApplication.php new file: tests/Feature/ExampleTest.php new file: tests/TestCase.php new file: tests/Unit/ExampleTest.php new file: vite.config.js 2 年之前
config wip: Added many new functionalities 2 年之前
database wip: Added many new functionalities 2 年之前
public - v1 new file: .editorconfig new file: .env.example new file: .gitattributes new file: .gitignore new file: README.md new file: app/Console/Kernel.php new file: app/Exceptions/Handler.php new file: app/Http/Controllers/Controller.php new file: app/Http/Kernel.php new file: app/Http/Middleware/Authenticate.php new file: app/Http/Middleware/EncryptCookies.php new file: app/Http/Middleware/PreventRequestsDuringMaintenance.php new file: app/Http/Middleware/RedirectIfAuthenticated.php new file: app/Http/Middleware/TrimStrings.php new file: app/Http/Middleware/TrustHosts.php new file: app/Http/Middleware/TrustProxies.php new file: app/Http/Middleware/ValidateSignature.php new file: app/Http/Middleware/VerifyCsrfToken.php new file: app/Models/User.php new file: app/Providers/AppServiceProvider.php new file: app/Providers/AuthServiceProvider.php new file: app/Providers/BroadcastServiceProvider.php new file: app/Providers/EventServiceProvider.php new file: app/Providers/RouteServiceProvider.php new file: artisan new file: bootstrap/app.php new file: bootstrap/cache/.gitignore new file: composer.json new file: composer.lock new file: config/app.php new file: config/auth.php new file: config/broadcasting.php new file: config/cache.php new file: config/cors.php new file: config/database.php new file: config/filesystems.php new file: config/hashing.php new file: config/logging.php new file: config/mail.php new file: config/queue.php new file: config/sanctum.php new file: config/services.php new file: config/session.php new file: config/view.php new file: database/.gitignore new file: database/factories/UserFactory.php new file: database/migrations/2014_10_12_000000_create_users_table.php new file: database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php new file: database/migrations/2019_08_19_000000_create_failed_jobs_table.php new file: database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php new file: database/seeders/DatabaseSeeder.php new file: package.json new file: phpunit.xml new file: public/.htaccess new file: public/favicon.ico new file: public/index.php new file: public/robots.txt new file: resources/css/app.css new file: resources/js/app.js new file: resources/js/bootstrap.js new file: resources/views/welcome.blade.php new file: routes/api.php new file: routes/channels.php new file: routes/console.php new file: routes/web.php new file: storage/app/.gitignore new file: storage/app/public/.gitignore new file: storage/framework/.gitignore new file: storage/framework/cache/.gitignore new file: storage/framework/cache/data/.gitignore new file: storage/framework/sessions/.gitignore new file: storage/framework/testing/.gitignore new file: storage/framework/views/.gitignore new file: storage/logs/.gitignore new file: tests/CreatesApplication.php new file: tests/Feature/ExampleTest.php new file: tests/TestCase.php new file: tests/Unit/ExampleTest.php new file: vite.config.js 2 年之前
resources wip: Added many new functionalities 2 年之前
routes 1.x 2 年之前
storage - v1 new file: .editorconfig new file: .env.example new file: .gitattributes new file: .gitignore new file: README.md new file: app/Console/Kernel.php new file: app/Exceptions/Handler.php new file: app/Http/Controllers/Controller.php new file: app/Http/Kernel.php new file: app/Http/Middleware/Authenticate.php new file: app/Http/Middleware/EncryptCookies.php new file: app/Http/Middleware/PreventRequestsDuringMaintenance.php new file: app/Http/Middleware/RedirectIfAuthenticated.php new file: app/Http/Middleware/TrimStrings.php new file: app/Http/Middleware/TrustHosts.php new file: app/Http/Middleware/TrustProxies.php new file: app/Http/Middleware/ValidateSignature.php new file: app/Http/Middleware/VerifyCsrfToken.php new file: app/Models/User.php new file: app/Providers/AppServiceProvider.php new file: app/Providers/AuthServiceProvider.php new file: app/Providers/BroadcastServiceProvider.php new file: app/Providers/EventServiceProvider.php new file: app/Providers/RouteServiceProvider.php new file: artisan new file: bootstrap/app.php new file: bootstrap/cache/.gitignore new file: composer.json new file: composer.lock new file: config/app.php new file: config/auth.php new file: config/broadcasting.php new file: config/cache.php new file: config/cors.php new file: config/database.php new file: config/filesystems.php new file: config/hashing.php new file: config/logging.php new file: config/mail.php new file: config/queue.php new file: config/sanctum.php new file: config/services.php new file: config/session.php new file: config/view.php new file: database/.gitignore new file: database/factories/UserFactory.php new file: database/migrations/2014_10_12_000000_create_users_table.php new file: database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php new file: database/migrations/2019_08_19_000000_create_failed_jobs_table.php new file: database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php new file: database/seeders/DatabaseSeeder.php new file: package.json new file: phpunit.xml new file: public/.htaccess new file: public/favicon.ico new file: public/index.php new file: public/robots.txt new file: resources/css/app.css new file: resources/js/app.js new file: resources/js/bootstrap.js new file: resources/views/welcome.blade.php new file: routes/api.php new file: routes/channels.php new file: routes/console.php new file: routes/web.php new file: storage/app/.gitignore new file: storage/app/public/.gitignore new file: storage/framework/.gitignore new file: storage/framework/cache/.gitignore new file: storage/framework/cache/data/.gitignore new file: storage/framework/sessions/.gitignore new file: storage/framework/testing/.gitignore new file: storage/framework/views/.gitignore new file: storage/logs/.gitignore new file: tests/CreatesApplication.php new file: tests/Feature/ExampleTest.php new file: tests/TestCase.php new file: tests/Unit/ExampleTest.php new file: vite.config.js 2 年之前
tests 1.x 2 年之前
.editorconfig - v1 new file: .editorconfig new file: .env.example new file: .gitattributes new file: .gitignore new file: README.md new file: app/Console/Kernel.php new file: app/Exceptions/Handler.php new file: app/Http/Controllers/Controller.php new file: app/Http/Kernel.php new file: app/Http/Middleware/Authenticate.php new file: app/Http/Middleware/EncryptCookies.php new file: app/Http/Middleware/PreventRequestsDuringMaintenance.php new file: app/Http/Middleware/RedirectIfAuthenticated.php new file: app/Http/Middleware/TrimStrings.php new file: app/Http/Middleware/TrustHosts.php new file: app/Http/Middleware/TrustProxies.php new file: app/Http/Middleware/ValidateSignature.php new file: app/Http/Middleware/VerifyCsrfToken.php new file: app/Models/User.php new file: app/Providers/AppServiceProvider.php new file: app/Providers/AuthServiceProvider.php new file: app/Providers/BroadcastServiceProvider.php new file: app/Providers/EventServiceProvider.php new file: app/Providers/RouteServiceProvider.php new file: artisan new file: bootstrap/app.php new file: bootstrap/cache/.gitignore new file: composer.json new file: composer.lock new file: config/app.php new file: config/auth.php new file: config/broadcasting.php new file: config/cache.php new file: config/cors.php new file: config/database.php new file: config/filesystems.php new file: config/hashing.php new file: config/logging.php new file: config/mail.php new file: config/queue.php new file: config/sanctum.php new file: config/services.php new file: config/session.php new file: config/view.php new file: database/.gitignore new file: database/factories/UserFactory.php new file: database/migrations/2014_10_12_000000_create_users_table.php new file: database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php new file: database/migrations/2019_08_19_000000_create_failed_jobs_table.php new file: database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php new file: database/seeders/DatabaseSeeder.php new file: package.json new file: phpunit.xml new file: public/.htaccess new file: public/favicon.ico new file: public/index.php new file: public/robots.txt new file: resources/css/app.css new file: resources/js/app.js new file: resources/js/bootstrap.js new file: resources/views/welcome.blade.php new file: routes/api.php new file: routes/channels.php new file: routes/console.php new file: routes/web.php new file: storage/app/.gitignore new file: storage/app/public/.gitignore new file: storage/framework/.gitignore new file: storage/framework/cache/.gitignore new file: storage/framework/cache/data/.gitignore new file: storage/framework/sessions/.gitignore new file: storage/framework/testing/.gitignore new file: storage/framework/views/.gitignore new file: storage/logs/.gitignore new file: tests/CreatesApplication.php new file: tests/Feature/ExampleTest.php new file: tests/TestCase.php new file: tests/Unit/ExampleTest.php new file: vite.config.js 2 年之前
.env.example 1.x 2 年之前
.gitattributes - v1 new file: .editorconfig new file: .env.example new file: .gitattributes new file: .gitignore new file: README.md new file: app/Console/Kernel.php new file: app/Exceptions/Handler.php new file: app/Http/Controllers/Controller.php new file: app/Http/Kernel.php new file: app/Http/Middleware/Authenticate.php new file: app/Http/Middleware/EncryptCookies.php new file: app/Http/Middleware/PreventRequestsDuringMaintenance.php new file: app/Http/Middleware/RedirectIfAuthenticated.php new file: app/Http/Middleware/TrimStrings.php new file: app/Http/Middleware/TrustHosts.php new file: app/Http/Middleware/TrustProxies.php new file: app/Http/Middleware/ValidateSignature.php new file: app/Http/Middleware/VerifyCsrfToken.php new file: app/Models/User.php new file: app/Providers/AppServiceProvider.php new file: app/Providers/AuthServiceProvider.php new file: app/Providers/BroadcastServiceProvider.php new file: app/Providers/EventServiceProvider.php new file: app/Providers/RouteServiceProvider.php new file: artisan new file: bootstrap/app.php new file: bootstrap/cache/.gitignore new file: composer.json new file: composer.lock new file: config/app.php new file: config/auth.php new file: config/broadcasting.php new file: config/cache.php new file: config/cors.php new file: config/database.php new file: config/filesystems.php new file: config/hashing.php new file: config/logging.php new file: config/mail.php new file: config/queue.php new file: config/sanctum.php new file: config/services.php new file: config/session.php new file: config/view.php new file: database/.gitignore new file: database/factories/UserFactory.php new file: database/migrations/2014_10_12_000000_create_users_table.php new file: database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php new file: database/migrations/2019_08_19_000000_create_failed_jobs_table.php new file: database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php new file: database/seeders/DatabaseSeeder.php new file: package.json new file: phpunit.xml new file: public/.htaccess new file: public/favicon.ico new file: public/index.php new file: public/robots.txt new file: resources/css/app.css new file: resources/js/app.js new file: resources/js/bootstrap.js new file: resources/views/welcome.blade.php new file: routes/api.php new file: routes/channels.php new file: routes/console.php new file: routes/web.php new file: storage/app/.gitignore new file: storage/app/public/.gitignore new file: storage/framework/.gitignore new file: storage/framework/cache/.gitignore new file: storage/framework/cache/data/.gitignore new file: storage/framework/sessions/.gitignore new file: storage/framework/testing/.gitignore new file: storage/framework/views/.gitignore new file: storage/logs/.gitignore new file: tests/CreatesApplication.php new file: tests/Feature/ExampleTest.php new file: tests/TestCase.php new file: tests/Unit/ExampleTest.php new file: vite.config.js 2 年之前
.gitignore - v1 new file: .editorconfig new file: .env.example new file: .gitattributes new file: .gitignore new file: README.md new file: app/Console/Kernel.php new file: app/Exceptions/Handler.php new file: app/Http/Controllers/Controller.php new file: app/Http/Kernel.php new file: app/Http/Middleware/Authenticate.php new file: app/Http/Middleware/EncryptCookies.php new file: app/Http/Middleware/PreventRequestsDuringMaintenance.php new file: app/Http/Middleware/RedirectIfAuthenticated.php new file: app/Http/Middleware/TrimStrings.php new file: app/Http/Middleware/TrustHosts.php new file: app/Http/Middleware/TrustProxies.php new file: app/Http/Middleware/ValidateSignature.php new file: app/Http/Middleware/VerifyCsrfToken.php new file: app/Models/User.php new file: app/Providers/AppServiceProvider.php new file: app/Providers/AuthServiceProvider.php new file: app/Providers/BroadcastServiceProvider.php new file: app/Providers/EventServiceProvider.php new file: app/Providers/RouteServiceProvider.php new file: artisan new file: bootstrap/app.php new file: bootstrap/cache/.gitignore new file: composer.json new file: composer.lock new file: config/app.php new file: config/auth.php new file: config/broadcasting.php new file: config/cache.php new file: config/cors.php new file: config/database.php new file: config/filesystems.php new file: config/hashing.php new file: config/logging.php new file: config/mail.php new file: config/queue.php new file: config/sanctum.php new file: config/services.php new file: config/session.php new file: config/view.php new file: database/.gitignore new file: database/factories/UserFactory.php new file: database/migrations/2014_10_12_000000_create_users_table.php new file: database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php new file: database/migrations/2019_08_19_000000_create_failed_jobs_table.php new file: database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php new file: database/seeders/DatabaseSeeder.php new file: package.json new file: phpunit.xml new file: public/.htaccess new file: public/favicon.ico new file: public/index.php new file: public/robots.txt new file: resources/css/app.css new file: resources/js/app.js new file: resources/js/bootstrap.js new file: resources/views/welcome.blade.php new file: routes/api.php new file: routes/channels.php new file: routes/console.php new file: routes/web.php new file: storage/app/.gitignore new file: storage/app/public/.gitignore new file: storage/framework/.gitignore new file: storage/framework/cache/.gitignore new file: storage/framework/cache/data/.gitignore new file: storage/framework/sessions/.gitignore new file: storage/framework/testing/.gitignore new file: storage/framework/views/.gitignore new file: storage/logs/.gitignore new file: tests/CreatesApplication.php new file: tests/Feature/ExampleTest.php new file: tests/TestCase.php new file: tests/Unit/ExampleTest.php new file: vite.config.js 2 年之前
README.md Update README.md 2 年之前
artisan - v1 new file: .editorconfig new file: .env.example new file: .gitattributes new file: .gitignore new file: README.md new file: app/Console/Kernel.php new file: app/Exceptions/Handler.php new file: app/Http/Controllers/Controller.php new file: app/Http/Kernel.php new file: app/Http/Middleware/Authenticate.php new file: app/Http/Middleware/EncryptCookies.php new file: app/Http/Middleware/PreventRequestsDuringMaintenance.php new file: app/Http/Middleware/RedirectIfAuthenticated.php new file: app/Http/Middleware/TrimStrings.php new file: app/Http/Middleware/TrustHosts.php new file: app/Http/Middleware/TrustProxies.php new file: app/Http/Middleware/ValidateSignature.php new file: app/Http/Middleware/VerifyCsrfToken.php new file: app/Models/User.php new file: app/Providers/AppServiceProvider.php new file: app/Providers/AuthServiceProvider.php new file: app/Providers/BroadcastServiceProvider.php new file: app/Providers/EventServiceProvider.php new file: app/Providers/RouteServiceProvider.php new file: artisan new file: bootstrap/app.php new file: bootstrap/cache/.gitignore new file: composer.json new file: composer.lock new file: config/app.php new file: config/auth.php new file: config/broadcasting.php new file: config/cache.php new file: config/cors.php new file: config/database.php new file: config/filesystems.php new file: config/hashing.php new file: config/logging.php new file: config/mail.php new file: config/queue.php new file: config/sanctum.php new file: config/services.php new file: config/session.php new file: config/view.php new file: database/.gitignore new file: database/factories/UserFactory.php new file: database/migrations/2014_10_12_000000_create_users_table.php new file: database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php new file: database/migrations/2019_08_19_000000_create_failed_jobs_table.php new file: database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php new file: database/seeders/DatabaseSeeder.php new file: package.json new file: phpunit.xml new file: public/.htaccess new file: public/favicon.ico new file: public/index.php new file: public/robots.txt new file: resources/css/app.css new file: resources/js/app.js new file: resources/js/bootstrap.js new file: resources/views/welcome.blade.php new file: routes/api.php new file: routes/channels.php new file: routes/console.php new file: routes/web.php new file: storage/app/.gitignore new file: storage/app/public/.gitignore new file: storage/framework/.gitignore new file: storage/framework/cache/.gitignore new file: storage/framework/cache/data/.gitignore new file: storage/framework/sessions/.gitignore new file: storage/framework/testing/.gitignore new file: storage/framework/views/.gitignore new file: storage/logs/.gitignore new file: tests/CreatesApplication.php new file: tests/Feature/ExampleTest.php new file: tests/TestCase.php new file: tests/Unit/ExampleTest.php new file: vite.config.js 2 年之前
composer.json wip: Added many new functionalities 2 年之前
composer.lock wip: Added many new functionalities 2 年之前
package-lock.json wip: Added many new functionalities 2 年之前
package.json 1.x 2 年之前
phpunit.xml 1.x 2 年之前
postcss.config.js 1.x 2 年之前
tailwind.config.js wip: Added many new functionalities 2 年之前
vite.config.js 1.x 2 年之前

README.md

ERPSAAS

Screenshot 2023-08-12 at 4 26 28 PM

This repo is currently a work in progress — PRs and issues welcome!

Getting started

Installation

Please check the official laravel installation guide for server requirements before you start. Official Documentation

Clone the repository

git clone https://github.com/andrewdwallo/erpsaas.git

Switch to the repo folder

cd erpsaas

Install all the dependencies using composer and npm

composer install
npm install

Copy the example env file and make the required configuration changes in the .env file

cp .env.example .env

Generate a new application key

php artisan key:generate

Run the database migrations (Set the database connection in .env before migrating)

php artisan migrate

Build your dependencies & start the local development server

npm run build
npm run dev

Command list

git clone https://github.com/andrewdwallo/erpsaas.git
cd erpsaas
composer install
npm install
cp .env.example .env
php artisan key:generate
php artisan migrate
npm run build
npm run dev

Database seeding

You may populate the database to help you get started quickly

Open the DatabaseSeeder and set the property values as per your requirement

database/seeders/DatabaseSeeder.php

Default login information:

email: admin@gmail.com
password: password

Run the database seeder

php artisan db:seed

Note : It’s recommended to have a clean database before seeding. You can refresh your migrations at any point to clean the database by running the following command

php artisan migrate:refresh

Dependencies

Note : It is recommended to read the documentation for all dependencies to get yourself familiar with how the application works.