Skip to content

Commit b63af86

Browse files
committed
readme
1 parent c136544 commit b63af86

File tree

1 file changed

+30
-45
lines changed

1 file changed

+30
-45
lines changed

README.md

Lines changed: 30 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,53 @@
1-
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
1+
# Beta Code Converter
22

3-
## Available Scripts
3+
This is an interactive website for converting between Greek unicode and beta code.
44

5-
In the project directory, you can run:
5+
## Try it Out
66

7-
### `npm start`
7+
[https://apps.perseids.org/beta-code/](https://apps.perseids.org/beta-code/)
88

9-
Runs the app in the development mode.<br>
10-
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
9+
### How to Use
1110

12-
The page will reload if you make edits.<br>
13-
You will also see any lint errors in the console.
11+
Type a word in one of the columns and it will convert it to the other format.
1412

15-
### `npm test`
13+
### Beta code
1614

17-
Launches the test runner in the interactive watch mode.<br>
18-
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
15+
Beta code is a system for encoding ancient Greek text using ASCII characters.
16+
For more information, see:
1917

20-
### `npm run build`
18+
- [https://en.wikipedia.org/wiki/Beta\_Code](https://en.wikipedia.org/wiki/Beta_Code)
19+
- [http://www.tlg.uci.edu/encoding/](http://www.tlg.uci.edu/encoding/)
2120

22-
Builds the app for production to the `build` folder.<br>
23-
It correctly bundles React in production mode and optimizes the build for the best performance.
21+
## Installation
2422

25-
The build is minified and the filenames include the hashes.<br>
26-
Your app is ready to be deployed!
23+
`yarn install`
2724

28-
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
25+
## Running the development server
2926

30-
### `npm run eject`
27+
`yarn start`
3128

32-
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
29+
## Building for deployment
3330

34-
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
31+
Before creating a production build you need to know the path where it will be accessed.
32+
Then run the command `PUBLIC_URL='./path/of/app' yarn build`.
33+
This will generate a set of static files in the `build/` directory that you can serve.
3534

36-
Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
35+
For example, if you want to deploy it at `www.example.com/` then run `PUBLIC_URL='./' yarn build`.
36+
If you want to deploy it at `www.example.com/beta` then run
37+
`PUBLIC_URL='./beta' yarn build`.
3738

38-
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
39+
## Running tests
3940

40-
## Learn More
41+
`yarn test`
4142

42-
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
43+
## Linting the code
4344

44-
To learn React, check out the [React documentation](https://reactjs.org/).
45+
`yarn lint`
4546

46-
### Code Splitting
47+
## Deploying a new version to github.io
4748

48-
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
49+
`yarn deploy-github`
4950

50-
### Analyzing the Bundle Size
51+
## Deploying a new version to Perseids
5152

52-
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
53-
54-
### Making a Progressive Web App
55-
56-
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
57-
58-
### Advanced Configuration
59-
60-
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
61-
62-
### Deployment
63-
64-
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
65-
66-
### `npm run build` fails to minify
67-
68-
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
53+
`yarn deploy-perseids`

0 commit comments

Comments
 (0)