mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-11-23 10:14:08 +03:00
Removed alpha messaging. (#825)
This commit is contained in:
parent
c3000cf322
commit
4087774d26
11
README.md
11
README.md
@ -29,13 +29,13 @@ Concepts such as *app*, *page*, *user*, *login*, *frontend*, *production*, etc.
|
||||
|
||||
While describing high-level features with Wasp, you still write the rest of your logic in your favorite technologies (currently React, NodeJS, Prisma).
|
||||
|
||||
NOTE: Wasp is in alpha and is therefore likely to change a lot, have bugs and miss important features.
|
||||
|
||||
```js
|
||||
// file: main.wasp
|
||||
|
||||
app TodoApp {
|
||||
title: "Todo App"
|
||||
title: "Todo App",
|
||||
wasp: { version: "^0.7.0" }
|
||||
}
|
||||
|
||||
route RootRoute { path: "/", to: MainPage }
|
||||
@ -82,10 +82,9 @@ This is the main repo of the Wasp universe, containing core code (mostly `waspc`
|
||||
|
||||
# Project status
|
||||
|
||||
Currently, Wasp is in alpha and has enough features so that you can develop a basic web app in it!
|
||||
You might find that it misses flexibility in some places or that some bigger features are missing, but the basics are there and we are now adding on top of them.
|
||||
In the case you get stuck, you can take the generated code and continue with it.
|
||||
As Wasp grows further, it should allow the development of web apps of increasing complexity, without the need to eject!
|
||||
Currently, Wasp is in beta, with most features flushed out and working well.
|
||||
However, there is still a lot of improvements and additions that we have in mind for the future, and we are working on them constantly, so you can expect a lot of changes and improvements in the future.
|
||||
As Wasp grows further, it should allow the development of web apps of increasing complexity!
|
||||
|
||||
While the idea is to support multiple web tech stacks in the future, right now we are focusing on the specific stack: React + react-query, NodeJS + ExpressJS, Prisma. We might yet change that as time goes, taking trends into account, but for now, this is serving us well for the purpose of developing compiler and language.
|
||||
|
||||
|
@ -14,8 +14,7 @@ import System.Directory
|
||||
)
|
||||
import Wasp.Cli.Command (Command, CommandError (..))
|
||||
import Wasp.Cli.Command.Common
|
||||
( alphaWarningMessage,
|
||||
findWaspProjectRootDirFromCwd,
|
||||
( findWaspProjectRootDirFromCwd,
|
||||
)
|
||||
import Wasp.Cli.Command.Compile (compileIOWithOptions, printCompilationResult)
|
||||
import Wasp.Cli.Command.Message (cliSendMessageC)
|
||||
@ -56,7 +55,6 @@ build = do
|
||||
then do
|
||||
cliSendMessageC $
|
||||
Msg.Success "Your wasp project has been successfully built! Check it out in the .wasp/build directory."
|
||||
cliSendMessageC $ Msg.Warning "Wasp is in alpha" alphaWarningMessage
|
||||
else
|
||||
throwError $
|
||||
CommandError "Building of wasp project failed" $ show (length errors) ++ " errors found"
|
||||
|
@ -1,7 +1,6 @@
|
||||
module Wasp.Cli.Command.Common
|
||||
( findWaspProjectRootDirFromCwd,
|
||||
findWaspProjectRoot,
|
||||
alphaWarningMessage,
|
||||
)
|
||||
where
|
||||
|
||||
@ -46,8 +45,3 @@ findWaspProjectRootDirFromCwd :: Command (Path' Abs (Dir WaspProjectDir))
|
||||
findWaspProjectRootDirFromCwd = do
|
||||
absCurrentDir <- liftIO getCurrentDirectory
|
||||
findWaspProjectRoot (fromJust $ SP.parseAbsDir absCurrentDir)
|
||||
|
||||
alphaWarningMessage :: String
|
||||
alphaWarningMessage =
|
||||
"Wasp is still in Alpha, therefore not yet production ready "
|
||||
++ "and might change significantly in the future versions."
|
||||
|
@ -14,7 +14,6 @@ import qualified System.FilePath as FP
|
||||
import Text.Printf (printf)
|
||||
import Wasp.Analyzer.Parser (isValidWaspIdentifier)
|
||||
import Wasp.Cli.Command (Command, CommandError (..))
|
||||
import qualified Wasp.Cli.Command.Common as Command.Common
|
||||
import Wasp.Common (WaspProjectDir)
|
||||
import qualified Wasp.Common as Common (WaspProjectDir)
|
||||
import qualified Wasp.Data as Data
|
||||
@ -40,8 +39,6 @@ createNewProject projectNameCandidate = do
|
||||
putStrLn ""
|
||||
putStrLn $ Term.applyStyles [Term.Bold] (" cd " ++ projectName)
|
||||
putStrLn $ Term.applyStyles [Term.Bold] " wasp start"
|
||||
putStrLn ""
|
||||
putStrLn Command.Common.alphaWarningMessage
|
||||
|
||||
-- Takes a project name String
|
||||
-- Returns either the ProjectInfo type that contains both the Project name
|
||||
|
@ -11,7 +11,7 @@ const InBlogCta = () => (
|
||||
<p className='in-blog-cta-link-container'>
|
||||
<Link className='in-blog-cta--link'
|
||||
to='https://e44cy1h4s0q.typeform.com/to/ycUzQa5A'>
|
||||
We are in Alpha (try it out)!
|
||||
We are in Beta (try it out)!
|
||||
</Link>
|
||||
<Divider />
|
||||
<Link className='in-blog-cta--link' to='https://discord.gg/rzdnErX'>
|
||||
|
@ -2,10 +2,9 @@
|
||||
title: Deploying
|
||||
---
|
||||
|
||||
:::danger
|
||||
While you can deploy Wasp projects, Wasp is still in alpha and not yet production-ready.
|
||||
|
||||
It might have critical security issues or other types of issues, and therefore we don't recommend deploying to production yet.
|
||||
:::info
|
||||
Wasp is in beta, so keep in mind there might be some kinks / bugs, and possibly a bit bigger changes in the future.
|
||||
If you encounter any issues, reach out to us on [Discord](https://discord.gg/rzdnErX) and we will make sure to help you out!
|
||||
:::
|
||||
|
||||
Right now, deploying of Wasp project is done by generating the code and then deploying generated code "manually", as explained below.
|
||||
|
@ -20,7 +20,6 @@ If you are interested in what is Wasp actually generating in the background, you
|
||||
Well, you could check [the "Language" section](language/overview.md) of the docs for more details on specific parts of Wasp.
|
||||
Or, you could try to build something on your own with Wasp!
|
||||
|
||||
You are likely to find that some feature that you want is missing, since Wasp is still in Alpha.
|
||||
In that case, please write to us on [Discord](https://discord.gg/rzdnErX) or create an issue on [Github](https://github.com/wasp-lang/wasp), so we can learn which features to add next.
|
||||
If you find some features you would like to have are missing, or have any other kind of feedback, please write to us on [Discord](https://discord.gg/rzdnErX) or create an issue on [Github](https://github.com/wasp-lang/wasp), so we can learn which features to add/improve next.
|
||||
Even better, if you would like to contribute or help building the feature, let us know!
|
||||
You can find more details on contributing [here](contributing.md).
|
||||
|
@ -17,7 +17,7 @@ module.exports = {
|
||||
favicon: 'img/favicon.ico',
|
||||
themeConfig: {
|
||||
navbar: {
|
||||
title: '.wasp (alpha)',
|
||||
title: '.wasp (beta)',
|
||||
logo: {
|
||||
alt: 'Wasp logo',
|
||||
src: 'img/wasp-logo-eqpar-circle.png',
|
||||
|
Loading…
Reference in New Issue
Block a user