how can we upload laravel project on cloud9? - laravel-5.3

can you please tell me how can we upload laravel project on c9.
I have made laravel project on localhost.
I know how to Install laravel on c9 but how can we upload existing laravel project on c9. Please help me ,Thanks

To upload files to Cloud9, either drag a local file directly from your desktop into the Cloud9 file tree, or use the File > Upload Local Files menu item (Source: Cloud9 docs).
Since you want to upload a whole project, you may try dragging your folder or else zip your project first and then upload it.
To actually setup Laravel, see Getting Started with Laravel on Cloud9 or Laravel 5.3 Installation on Cloud9.

Related

How to deploy laravel and vuejs serparately in apache server

I have an application laravel as backend and vuejs as frontend separately. The problem is I don't know how to deploy this app to the server separately using apache server. I need help please provide me a detail instructions on how to do it. I have successfully deploy the laravel application api but I'm having trouble with the vuejs frontend also I'm using one ip address for this two application.
Thanks for your help.
Donnie.
It is very simple to deploy Vue SPA on the apache server.
Run this command in your project for production build
npm run prod
OR
yarn build
This command will create a dist folder in your Vue project.
project/dist/spa
spa folder contains index.html and other files (images,css and compiled js filed)
Give path of this index.html in your apache environment.
/etc/apache2/sites-available/your_project.conf
In ubuntu look like this.
eg /var/www/dist/spa
In ubuntu how we make the symbolic link
ln -s /your_project/dist /var/www/dist

How to use Downloaded Bootstrap Template

So I am new to ASP.NET and have run through some tutorials. The next step for me was to find a really cool bootstrap template to employ. I downloaded this solution http://bootstraptaste.com/bocor-bootstrap-template-nice-animation/ and tried to change the .css file as I did originally following the Visual Studio tutorial http://www.asp.net/visual-studio/overview/2013/creating-web-projects-in-visual-studio#bootstrap .
Nothing happened. Also, a ton of files came with the template I downloaded, including an index.html file which actually loads the project into Internet Explorer.
I'd like to load this solution in Visual Studio so I can play around with it and modify it. Is this possible? I am definitely not advanced enough yet to get the same results on my own. Any advice and help is appreciated!
I'm not sure if Visual Studio is the best tool for creating your websites. To get your template running, execute the file index.html in a web browser. It is however, a better practice to run your templates from a server like xampp, wamp or IIS (in case of Windows OS).
In case of xampp, copy the folder to xampp/htdocs/. Then start the xampp server and based upon the port your xampp server is running on, run it on a web browser by typing localhost:port/folder_name in the address bar.
The procedure is similar for wamp with the only difference being in the path. The path for wamp will be wamp/sites/

How to add project (.sln) into existing asp.net website files

I have tried almost all methods to make new project using exisiting files of asp.net in vs 2010 but i failed to run on new machine.
each time i did this it shows error that "could not load project from d:\path name" etc etc that is my last computer path name
Now what i am looking for , i have a website and all asp.net pages but i am unable to see its working by single click on project exe .
please help me out that how i can make project using existing asp.net files
remember : i have only asp.net pages to laod directly into visual studio but i want project exe so when i click on .sln file i can see site working.
In order for it to work you need to keep in mind you have to use original source code and not pre-compiled code from the server. To import your old files into a .sln file:
Create a New Website/Web Application
Add Existing Item Select item(s)
that you are trying to import into this new solution.
Make sure you dont add any .vbproj or .sln files from the previous project.

Deploy my project to the jelestic cloud

Being quite new to the web technologies in general, I have been trying to deploy a project to the free Cloud named "jelestic". I am required to upload a .war.
The problem is that I have a folder containing a working applet, some web pages explaining its functionalities., and some library .jar that is necessary to make the applet work. I don't see how to wrap the whole folder into a .war file.
Most tutorials tell me how to deploy an applet through localhost:8080. But here I would like to make a bundle of all the files in the folder and upload it as a .war file.
Could you tell me how to do this task?
If you place your applet in some directory under war directory it will be publicly accessible. So if you place your applet and lib jar in let us say: app.war/applet/applet.jar app.war/applet/lib.jar all you will need is a page with applet tag poiting to http://appserver/app/applet/applet.jar :)

Can Flash Builder 4 create a .war file?

I'm doing Flex development in Flash Builder 4 and I haven't been able to find a way to get it to create a .war file. The project creation wizard lets you select a web server to run your project in so I would expect it to be able to create a .war file. The default behavior is just to copy everything into the project name under Tomcat's webapps/ directory.
Has anyone been able to find a way to create a .war file with Flash Builder 4?
I have my project set to automatically publish to the GlassFish server so it doesn't normally create the .war file, but you can export the project to get it to create it.
It's under the File menu to Export and then you select the WAR file format.

Resources