wasp/web/docs/tutorials/dev-excuses-app/01-creating-the-project.md
2023-04-12 15:34:00 +02:00

869 B
Raw Blame History

id title
01-creating-the-project Creating the project

import useBaseUrl from '@docusaurus/useBaseUrl';

By now you've already learned how to install Wasp and create a new project. So lets create a new web app appropriately named ItWaspsOnMyMachine.

wasp new ItWaspsOnMyMachine

Changing the working directory:

cd ItWaspsOnMyMachine

Starting the app:

wasp start

Now your default browser should open up with a simple predefined text message. Thats it! 🥳 For now the codebase consists of only two files! main.wasp is the config file that defines the applications functionality. And MainPage.js is the front-end. You can delete Main.css, we won't use that. And don't forget to remove import './Main.css' from MainPage.js file.

<img alt="Initial page" src={useBaseUrl('img/init-page.png')} />